Merge remote-tracking branch 'origin/相关方关联分公司功能' into 相关方关联分公司功能

pull/4/head
zhaoyu 2023-12-14 17:23:51 +08:00
commit 190f0dc838
2 changed files with 11 additions and 3 deletions

View File

@ -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;
} }

View File

@ -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
<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> </select>
</mapper> </mapper>