mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 21:32:07 +08:00
打包接口,工序加工-板材类型查询修改
This commit is contained in:
+18
@@ -68,8 +68,26 @@
|
||||
where p.id = #{id} and p.organ_id = #{organId} and p.deleted = 0
|
||||
</select>
|
||||
|
||||
|
||||
<delete id="deleteById" parameterType="java.lang.Long">
|
||||
DELETE FROM process
|
||||
WHERE id = #{id};
|
||||
</delete>
|
||||
|
||||
|
||||
<select id="selectUserProcess"
|
||||
resultType="com.cf.imes.module.system.controller.admin.process.vo.processUser.ProcessAndUserRespVO">
|
||||
|
||||
|
||||
select distinct p.name as processName,pu.user_id as userId
|
||||
from process p
|
||||
join process_user pu on p.id = pu.process_id
|
||||
where p.organ_id = #{organId} and p.deleted = false
|
||||
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user