generated from dxfeng/secondev-wugang-dxfeng
入职表查询 增加已入职状态
This commit is contained in:
parent
67dfa72bf0
commit
b5a7c535da
|
|
@ -66,6 +66,7 @@
|
|||
<select id="getEmploymentCount" resultType="java.lang.Integer">
|
||||
select count(id) as value from e10_common.uf_jcl_rzgl t
|
||||
where t.delete_type = 0 and t.tenant_key = #{tenantKey}
|
||||
and t.rzzt = 1
|
||||
<if test="departmentIdList != null and departmentIdList.size() > 0">
|
||||
AND t.department IN
|
||||
<foreach collection="departmentIdList" item="departmentId" open="(" close=")" separator=",">
|
||||
|
|
@ -78,6 +79,7 @@
|
|||
<select id="getKeyEmploymentCount" resultType="java.lang.Integer">
|
||||
select count(id) as value from e10_common.uf_jcl_rzgl t
|
||||
where t.delete_type = 0 and t.tenant_key = #{tenantKey}
|
||||
and t.rzzt = 1
|
||||
<if test="departmentIdList != null and departmentIdList.size() > 0">
|
||||
AND t.department IN
|
||||
<foreach collection="departmentIdList" item="departmentId" open="(" close=")" separator=",">
|
||||
|
|
@ -92,6 +94,7 @@
|
|||
<select id="getEmploymentListByPosition" resultType="com.weaver.seconddev.portal.entity.po.PortalPO">
|
||||
select count(id) as name,position as value from e10_common.uf_jcl_rzgl t
|
||||
where t.delete_type = 0 and t.tenant_key = #{tenantKey}
|
||||
and t.rzzt = 1
|
||||
<if test="departmentIdList != null and departmentIdList.size() > 0">
|
||||
AND t.department IN
|
||||
<foreach collection="departmentIdList" item="departmentId" open="(" close=")" separator=",">
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@
|
|||
<select id="getEntryNumber" resultType="java.lang.Integer">
|
||||
select count(id) as value from e10_common.uf_jcl_rzgl t
|
||||
where t.delete_type = 0 and t.tenant_key = #{tenantKey}
|
||||
and t.rzzt = 1
|
||||
<if test="departmentIdList != null and departmentIdList.size() > 0">
|
||||
AND t.department IN
|
||||
<foreach collection="departmentIdList" item="departmentId" open="(" close=")" separator=",">
|
||||
|
|
|
|||
Loading…
Reference in New Issue