33 changed files with 646 additions and 1 deletions
			
			
		| @ -0,0 +1,32 @@ | |||
| package com.epmet.dto.form; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 16:31 | |||
|  * 已认证党员列表 | |||
|  */ | |||
| @Data | |||
| public class CertifiedFormDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 页码 | |||
|      */ | |||
|     private Integer pageNo; | |||
| 
 | |||
|     /** | |||
|      * 每页数量 | |||
|      */ | |||
|     private Integer pageSize; | |||
| 
 | |||
|     /** | |||
|      * 网格id | |||
|      */ | |||
|     private String gridId; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,42 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 15:45 | |||
|  * 已认证党员列表 | |||
|  */ | |||
| @Data | |||
| public class CertifiedResultDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = -1L; | |||
| 
 | |||
|     /** | |||
|      * 用户id | |||
|      */ | |||
|     private String userId; | |||
| 
 | |||
|     /** | |||
|      * 真实姓名 | |||
|      */ | |||
|     private String realName; | |||
| 
 | |||
|     /** | |||
|      * 居民头像 | |||
|      */ | |||
|     private String userHeadPhoto; | |||
| 
 | |||
|     /** | |||
|      * applyTime 申请时间 | |||
|      */ | |||
|     private Integer applyTime; | |||
| 
 | |||
|     /** | |||
|      * 提交网格:XXX街道-XXX社区-XXX网格 | |||
|      */ | |||
|     private String gridFullPath; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,22 @@ | |||
| package com.epmet.dto.form; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-27 9:16 | |||
|  * 根据gridId查询GridNameDTO | |||
|  */ | |||
| @Data | |||
| public class SelectGridNameByGridIdFormDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = -1L; | |||
| 
 | |||
|     /** | |||
|      * 网格id | |||
|      */ | |||
|     private String gridId; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,27 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-27 9:16 | |||
|  * 根据gridId查询GridNameDTO | |||
|  */ | |||
| @Data | |||
| public class SelectGridNameByGridIdResultDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 网格id | |||
|      */ | |||
|     private String gridId; | |||
| 
 | |||
|     /** | |||
|      * 网格名称 | |||
|      */ | |||
|     private String gridName; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,21 @@ | |||
| package com.epmet.resi.partymember.dto.partymember; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 17:52 | |||
|  */ | |||
| @Data | |||
| public class UserHeadPhotoDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 头像地址 | |||
|      */ | |||
|     private String userHeadPhoto; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,32 @@ | |||
| package com.epmet.resi.partymember.dto.partymember.form; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 16:31 | |||
|  * 已认证党员列表 | |||
|  */ | |||
| @Data | |||
| public class CertifiedFormDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 页码 | |||
|      */ | |||
|     private Integer pageNo; | |||
| 
 | |||
|     /** | |||
|      * 每页数量 | |||
|      */ | |||
|     private Integer pageSize; | |||
| 
 | |||
|     /** | |||
|      * 网格id | |||
|      */ | |||
|     private String gridId; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,42 @@ | |||
| package com.epmet.resi.partymember.dto.partymember.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 15:45 | |||
|  * 已认证党员列表 | |||
|  */ | |||
| @Data | |||
| public class CertifiedResultDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = -1L; | |||
| 
 | |||
|     /** | |||
|      * 用户id | |||
|      */ | |||
|     private String userId; | |||
| 
 | |||
|     /** | |||
|      * 真实姓名 | |||
|      */ | |||
|     private String realName; | |||
| 
 | |||
|     /** | |||
|      * 居民头像 | |||
|      */ | |||
|     private String userHeadPhoto; | |||
| 
 | |||
|     /** | |||
|      * applyTime 申请时间 | |||
|      */ | |||
|     private Long applyTime; | |||
| 
 | |||
|     /** | |||
|      * 提交网格:XXX街道-XXX社区-XXX网格 | |||
|      */ | |||
|     private String gridFullPath; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,26 @@ | |||
| package com.epmet.dto; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 17:52 | |||
|  */ | |||
| @Data | |||
| public class UserHeadPhotoDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 用户id | |||
|      */ | |||
|     private String userId; | |||
| 
 | |||
|     /** | |||
|      * 头像地址 | |||
|      */ | |||
|     private String userHeadPhoto; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,42 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Auther zxc | |||
|  * @Create 2020-04-26 15:45 | |||
|  * 已认证党员列表 | |||
|  */ | |||
| @Data | |||
| public class CertifiedResultDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = -1L; | |||
| 
 | |||
|     /** | |||
|      * 用户id | |||
|      */ | |||
|     private String userId; | |||
| 
 | |||
|     /** | |||
|      * 真实姓名 | |||
|      */ | |||
|     private String realName; | |||
| 
 | |||
|     /** | |||
|      * 居民头像 | |||
|      */ | |||
|     private String userHeadPhoto; | |||
| 
 | |||
|     /** | |||
|      * applyTime 申请时间 | |||
|      */ | |||
|     private Integer applyTime; | |||
| 
 | |||
|     /** | |||
|      * 提交网格:XXX街道-XXX社区-XXX网格 | |||
|      */ | |||
|     private String gridFullPath; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,48 @@ | |||
| /** | |||
|  * Copyright 2018 人人开源 https://www.renren.io
 | |||
|  * <p> | |||
|  * This program is free software: you can redistribute it and/or modify | |||
|  * it under the terms of the GNU General Public License as published by | |||
|  * the Free Software Foundation, either version 3 of the License, or | |||
|  * (at your option) any later version. | |||
|  * <p> | |||
|  * This program is distributed in the hope that it will be useful, | |||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | |||
|  * GNU General Public License for more details. | |||
|  * <p> | |||
|  * You should have received a copy of the GNU General Public License | |||
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |||
|  */ | |||
| 
 | |||
| package com.epmet.controller; | |||
| 
 | |||
| import com.epmet.commons.tools.utils.Result; | |||
| import com.epmet.dto.UserHeadPhotoDTO; | |||
| import com.epmet.dto.result.CertifiedResultDTO; | |||
| import com.epmet.service.UserWechatService; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.web.bind.annotation.*; | |||
| 
 | |||
| import java.util.List; | |||
| 
 | |||
| 
 | |||
| /** | |||
|  * 用户微信端关系表  | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2020-04-26 | |||
|  */ | |||
| @RestController | |||
| @RequestMapping("userwechat") | |||
| public class UserWechatController { | |||
|      | |||
|     @Autowired | |||
|     private UserWechatService userWechatService; | |||
| 
 | |||
|     @PostMapping(value = "/selectuserheadphotobyuserid") | |||
|     public Result<List<CertifiedResultDTO>> selectUserHeadPhotoByUserId(@RequestBody List<CertifiedResultDTO> certifiedResultDTOS){ | |||
|         return new Result<List<CertifiedResultDTO>>().ok(userWechatService.selectUserHeadPhotoByUserId(certifiedResultDTOS)); | |||
|     } | |||
| 
 | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue