提交代码
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="email != null and email != ''">email,</if>
|
||||||
<if test="status != null">status,</if>
|
<if test="status != null">status,</if>
|
||||||
<if test="createBy != null and createBy != ''">create_by,</if>
|
<if test="createBy != null and createBy != ''">create_by,</if>
|
||||||
|
<if test="typeFlag != null and typeFlag != ''">type_flag,</if>
|
||||||
create_time
|
create_time
|
||||||
)values(
|
)values(
|
||||||
<if test="deptId != null and deptId != 0">#{deptId},</if>
|
<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="email != null and email != ''">#{email},</if>
|
||||||
<if test="status != null">#{status},</if>
|
<if test="status != null">#{status},</if>
|
||||||
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
||||||
|
<if test="typeFlag != null and typeFlag != ''">#{typeFlag},</if>
|
||||||
sysdate()
|
sysdate()
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
|
|
|
@ -179,8 +179,8 @@ public class SurProjectUserinfoServiceImpl implements ISurProjectUserinfoService
|
||||||
List<SurProjectUserinfo> deptUserList = new ArrayList<>();
|
List<SurProjectUserinfo> deptUserList = new ArrayList<>();
|
||||||
|
|
||||||
if(Convert.toInt(nowRole)<11){
|
if(Convert.toInt(nowRole)<11){
|
||||||
deptUserList = surProjectUserinfoMapper.selectProjectDeptUserinfoList(surProjectUserinfo);
|
// deptUserList = surProjectUserinfoMapper.selectProjectDeptUserinfoList(surProjectUserinfo);
|
||||||
projectUserList.addAll(deptUserList);
|
// projectUserList.addAll(deptUserList);
|
||||||
}
|
}
|
||||||
for(SurProjectUnitInfo unitInfo:surProjectUnitInfoList){
|
for(SurProjectUnitInfo unitInfo:surProjectUnitInfoList){
|
||||||
List<SurProjectUserinfo> userInfoList = new ArrayList<>();
|
List<SurProjectUserinfo> userInfoList = new ArrayList<>();
|
||||||
|
|
Loading…
Reference in New Issue