forked from rongchao/epmet-cloud-rizhao
				
			
				 8 changed files with 223 additions and 7 deletions
			
			
		| @ -0,0 +1,26 @@ | |||
| package com.epmet.dto.form; | |||
| 
 | |||
| import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; | |||
| import lombok.Data; | |||
| 
 | |||
| import javax.validation.constraints.NotBlank; | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * 查询登陆用户客户列表(工作端) | |||
|  * @CreateTime 2020/8/25 | |||
|  */ | |||
| @Data | |||
| public class CustomerListFormDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     public interface UserIdGroup extends CustomerClientShowGroup{} | |||
| 
 | |||
|     /** | |||
|      * 手机号 | |||
|      */ | |||
|     @NotBlank(message = "手机号不能为空",groups = UserIdGroup.class) | |||
|     private String phone; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,23 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * 查询登陆用户客户列表(工作端) | |||
|  * @CreateTime 2020/8/25 | |||
|  */ | |||
| @Data | |||
| public class CustomerListResultDTO implements Serializable { | |||
| 
 | |||
| 	/** | |||
| 	 * 客户Id | |||
| 	 */ | |||
| 	private String customerId; | |||
| 
 | |||
| 	/** | |||
| 	 * 客户名称 | |||
| 	 */ | |||
| 	private String customerName; | |||
| } | |||
| @ -0,0 +1,48 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * 获取pc工作端登陆用户信息 | |||
|  * @CreateTime 2020/8/25 | |||
|  */ | |||
| @Data | |||
| public class StaffBasicInfoResultDTO implements Serializable { | |||
| 
 | |||
| 	/** | |||
| 	 * 客户Id | |||
| 	 */ | |||
| 	private String customerId; | |||
| 
 | |||
| 	/** | |||
| 	 * 用户Id | |||
| 	 */ | |||
| 	private String userId; | |||
| 
 | |||
| 	/** | |||
| 	 * 真实姓名 | |||
| 	 */ | |||
| 	private String realName; | |||
| 
 | |||
| 	/** | |||
| 	 * 性别0.未知,1男,2.女 | |||
| 	 */ | |||
| 	private String gender; | |||
| 
 | |||
| 	/** | |||
| 	 * 邮箱 | |||
| 	 */ | |||
| 	private String email; | |||
| 
 | |||
| 	/** | |||
| 	 * 手机号 | |||
| 	 */ | |||
| 	private String mobile; | |||
| 
 | |||
| 	/** | |||
| 	 * 地址 | |||
| 	 */ | |||
| 	private String address; | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue