Commit c566ae74 authored by 韩桐桐's avatar 韩桐桐

导出BUGFIX

parent 9bcdc36a
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
<if test="sort != null"> <if test="sort != null">
${sort.field} ${sort.sortType}, ${sort.field} ${sort.sortType},
</if> </if>
rec_date desc rec_date DESC,sequence_nbr DESC
</select> </select>
<select id="queryBaseEnterpriseInIds" resultType="com.yeejoin.amos.boot.module.jczs.api.vo.BaseEnterpriseVo"> <select id="queryBaseEnterpriseInIds" resultType="com.yeejoin.amos.boot.module.jczs.api.vo.BaseEnterpriseVo">
......
...@@ -184,7 +184,7 @@ public class TzBaseEnterpriseInfoController { ...@@ -184,7 +184,7 @@ public class TzBaseEnterpriseInfoController {
} }
@TycloudOperation(ApiLevel = UserType.AGENCY, needAuth = false) @TycloudOperation(ApiLevel = UserType.AGENCY)
@RequestMapping(value = "/page", method = RequestMethod.GET) @RequestMapping(value = "/page", method = RequestMethod.GET)
@ApiOperation(httpMethod = "GET", value = "根据id查询", notes = "根据id查询") @ApiOperation(httpMethod = "GET", value = "根据id查询", notes = "根据id查询")
public ResponseModel<IPage<TzBaseEnterpriseInfoDto>> page(PageParam pageParam, public ResponseModel<IPage<TzBaseEnterpriseInfoDto>> page(PageParam pageParam,
......
...@@ -18,7 +18,7 @@ public interface JczsServiceFeignClient { ...@@ -18,7 +18,7 @@ public interface JczsServiceFeignClient {
* 企业信息列表分页查询 * 企业信息列表分页查询
*/ */
@RequestMapping(value = "/baseEnterprise/page", method = RequestMethod.GET) @RequestMapping(value = "/baseEnterprise/page", method = RequestMethod.GET)
ResponseModel<Page<Map<String, String>>> page(@RequestParam("page") int page, ResponseModel<Page<Map<String, String>>> page(@RequestParam("current") int current,
@RequestParam("size") int size, @RequestParam("size") int size,
@RequestParam("keyword") String keyword, @RequestParam("keyword") String keyword,
@RequestParam Map<String, String> map); @RequestParam Map<String, String> map);
......
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
LEFT JOIN "amos_tzs_biz"."tzs_user_permission" up ON ur."sequence_nbr" = up."user_seq" LEFT JOIN "amos_tzs_biz"."tzs_user_permission" up ON ur."sequence_nbr" = up."user_seq"
<where> <where>
<if test='ids != null'> <if test='ids != null'>
and ur.sequence_nbr in and (COALESCE (up.sequence_nbr, ur.sequence_nbr)) in
<foreach collection="ids" item="id" open="(" close=")" separator=","> <foreach collection="ids" item="id" open="(" close=")" separator=",">
#{id} #{id}
</foreach> </foreach>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment