forked from rongchao/epmet-cloud-rizhao
				
			
				 14 changed files with 254 additions and 40 deletions
			
			
		@ -0,0 +1,18 @@ | 
				
			|||
package com.epmet.dto.form; | 
				
			|||
 | 
				
			|||
import lombok.Data; | 
				
			|||
 | 
				
			|||
import java.io.Serializable; | 
				
			|||
import java.util.List; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @Description | 
				
			|||
 * @Author yinzuomei | 
				
			|||
 * @Date 2020/4/7 18:20 | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
public class UserResiInfoListFormDTO implements Serializable { | 
				
			|||
	private static final long serialVersionUID = -4454561042197166135L; | 
				
			|||
 | 
				
			|||
	private List<String> userIdList; | 
				
			|||
} | 
				
			|||
@ -0,0 +1,65 @@ | 
				
			|||
package com.epmet.dto.result; | 
				
			|||
 | 
				
			|||
import lombok.Data; | 
				
			|||
 | 
				
			|||
import java.io.Serializable; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @Description | 
				
			|||
 * @Author yinzuomei | 
				
			|||
 * @Date 2020/4/7 18:45 | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
public class UserResiInfoResultDTO implements Serializable { | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 唯一标识 | 
				
			|||
	 */ | 
				
			|||
	private String id; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 用户Id(主键) user.id | 
				
			|||
	 */ | 
				
			|||
	private String userId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 手机号(注册手机号) | 
				
			|||
	 */ | 
				
			|||
	private String regMobile; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 姓氏 | 
				
			|||
	 */ | 
				
			|||
	private String surname; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 名称 | 
				
			|||
	 */ | 
				
			|||
	private String name; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 街道 | 
				
			|||
	 */ | 
				
			|||
	private String street; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 小区名称 | 
				
			|||
	 */ | 
				
			|||
	private String district; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 楼栋单元 | 
				
			|||
	 */ | 
				
			|||
	private String buildingAddress; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 用户显示名称 | 
				
			|||
	 */ | 
				
			|||
	private String showName; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 用户头像 | 
				
			|||
	 */ | 
				
			|||
	private String headPhoto; | 
				
			|||
 | 
				
			|||
} | 
				
			|||
					Loading…
					
					
				
		Reference in new issue