提交代码
parent
8139308f82
commit
dbb809777c
|
@ -129,6 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="email != null and email != ''">email,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="createBy != null and createBy != ''">create_by,</if>
|
||||
<if test="typeFlag != null and typeFlag != ''">type_flag,</if>
|
||||
create_time
|
||||
)values(
|
||||
<if test="deptId != null and deptId != 0">#{deptId},</if>
|
||||
|
@ -141,6 +142,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="email != null and email != ''">#{email},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
||||
<if test="typeFlag != null and typeFlag != ''">#{typeFlag},</if>
|
||||
sysdate()
|
||||
)
|
||||
</insert>
|
||||
|
|
|
@ -179,8 +179,8 @@ public class SurProjectUserinfoServiceImpl implements ISurProjectUserinfoService
|
|||
List<SurProjectUserinfo> deptUserList = new ArrayList<>();
|
||||
|
||||
if(Convert.toInt(nowRole)<11){
|
||||
deptUserList = surProjectUserinfoMapper.selectProjectDeptUserinfoList(surProjectUserinfo);
|
||||
projectUserList.addAll(deptUserList);
|
||||
// deptUserList = surProjectUserinfoMapper.selectProjectDeptUserinfoList(surProjectUserinfo);
|
||||
// projectUserList.addAll(deptUserList);
|
||||
}
|
||||
for(SurProjectUnitInfo unitInfo:surProjectUnitInfoList){
|
||||
List<SurProjectUserinfo> userInfoList = new ArrayList<>();
|
||||
|
|
Loading…
Reference in New Issue