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

导出BUGFIX

parent 9bcdc36a
......@@ -154,7 +154,7 @@
<if test="sort != null">
${sort.field} ${sort.sortType},
</if>
rec_date desc
rec_date DESC,sequence_nbr DESC
</select>
<select id="queryBaseEnterpriseInIds" resultType="com.yeejoin.amos.boot.module.jczs.api.vo.BaseEnterpriseVo">
......
......@@ -184,7 +184,7 @@ public class TzBaseEnterpriseInfoController {
}
@TycloudOperation(ApiLevel = UserType.AGENCY, needAuth = false)
@TycloudOperation(ApiLevel = UserType.AGENCY)
@RequestMapping(value = "/page", method = RequestMethod.GET)
@ApiOperation(httpMethod = "GET", value = "根据id查询", notes = "根据id查询")
public ResponseModel<IPage<TzBaseEnterpriseInfoDto>> page(PageParam pageParam,
......
......@@ -18,7 +18,7 @@ public interface JczsServiceFeignClient {
* 企业信息列表分页查询
*/
@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("keyword") String keyword,
@RequestParam Map<String, String> map);
......
......@@ -117,7 +117,7 @@
LEFT JOIN "amos_tzs_biz"."tzs_user_permission" up ON ur."sequence_nbr" = up."user_seq"
<where>
<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=",">
#{id}
</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