12618 编辑页面 判空提示语不正确
parent
253f559ba5
commit
71e3449f48
|
@ -31,7 +31,6 @@ public class FlowTrainController extends BaseController {
|
||||||
PageData pd = new PageData();
|
PageData pd = new PageData();
|
||||||
pd = this.getPageData();
|
pd = this.getPageData();
|
||||||
pd.put("MAndTUserId",Jurisdiction.getUSER_ID());
|
pd.put("MAndTUserId",Jurisdiction.getUSER_ID());
|
||||||
// pd.put("TRAIN_CORP_LEADER", Jurisdiction.getUSER_ID());
|
|
||||||
Map result = HttpClientService.doPost(xgfUrl + "/openApi/trainingbatch/list" +getPageUrl(page), pd);
|
Map result = HttpClientService.doPost(xgfUrl + "/openApi/trainingbatch/list" +getPageUrl(page), pd);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1317,6 +1317,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
<select id="getUserInfo" resultType="com.zcloud.entity.PageData">
|
<select id="getUserInfo" resultType="com.zcloud.entity.PageData">
|
||||||
select * from vi_user_all where USER_ID = #{USER_ID}
|
select * from vi_user_all
|
||||||
</select>
|
<if test="USER_ID != null and USER_ID != ''">
|
||||||
|
where USER_ID = #{USER_ID}
|
||||||
|
</if>
|
||||||
|
<if test="USER_IDS != null and USER_IDS != ''">
|
||||||
|
where USER_ID in
|
||||||
|
<foreach item="item" index="index" collection="USER_IDS" open="(" separator="," close=")">
|
||||||
|
#{item}
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
Loading…
Reference in New Issue