| | |
| | | public R pageUserAppletsBackstage( |
| | | @RequestBody @Validated(PageGroup.class) PageUserAppletsBackstageDTO pageUserAppletsBackstageDTO) { |
| | | pageUserAppletsBackstageDTO.setAreaCode(this.getAreaCode()); |
| | | pageUserAppletsBackstageDTO.setAppId(this.getAppId()); |
| | | return userService.pageUserAppletsBackstage(pageUserAppletsBackstageDTO); |
| | | } |
| | | |
| | |
| | | private Long userId; |
| | | |
| | | private String areaCode; |
| | | |
| | | private String appId; |
| | | } |
| | |
| | | from sys_user u |
| | | left join com_act a on u.community_id=a.community_id |
| | | where |
| | | u.type=1 and u.community_id is not null |
| | | u.type=1 and u.community_id is not null and u.app_id =#{pageUserAppletsBackstageDTO.appId} |
| | | <if test='pageUserAppletsBackstageDTO.phone != null and pageUserAppletsBackstageDTO.phone.trim() != ""'> |
| | | and u.phone=#{pageUserAppletsBackstageDTO.phone} |
| | | </if> |