This commit is contained in:
parent
d90906cb2e
commit
7dc5ee4fe9
|
|
@ -300,7 +300,7 @@
|
|||
select
|
||||
<include refid="baseColumns"/>
|
||||
from jcl_org_staffplan t where
|
||||
((time_start <= #{timeStart,jdbcType=DATE} AND time_end >= #{timeStart,jdbcType=DATE} OR (time_end <= #{timeEnd,jdbcType=DATE} AND time_end >= #{timeEnd,jdbcType=DATE})
|
||||
((time_start <= #{timeStart,jdbcType=DATE} AND time_end >= #{timeStart,jdbcType=DATE}) OR (time_end <= #{timeEnd,jdbcType=DATE} AND time_end >= #{timeEnd,jdbcType=DATE}))
|
||||
AND ec_company = #{ecCompany}
|
||||
AND control_dimension = #{controlDimension}
|
||||
AND delete_type = 0
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ public class FunctionOutStaffServiceImpl {
|
|||
|
||||
private StaffPO select(StaffOutParam param) {
|
||||
List<StaffPO> staffPO = staffMapper().customSelect(param.getPlanId(), param.getCompany(), param.getDepartment(), param.getJob());
|
||||
OrganizationAssert.isEmpty(staffPO,"未查询到对应编制方案下的组织编制信息!");
|
||||
OrganizationAssert.notEmpty(staffPO,"未查询到对应编制方案下的组织编制信息!");
|
||||
return staffPO.get(0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue