7 changed files with 117 additions and 0 deletions
			
			
		@ -0,0 +1,27 @@ | 
				
			|||||
 | 
					package com.epmet.dto.form; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import javax.validation.constraints.NotBlank; | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Description 获取客户小程序模板列表-接口入参 | 
				
			||||
 | 
					 * @Author sun | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class CustomerTemplateListFormDTO implements Serializable { | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 客户Id | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    @NotBlank(message="客户Id不能为空", groups = {AddUserInternalGroup.class}) | 
				
			||||
 | 
					    private String customerId; | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 微信公共模板库模板Id | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    @NotBlank(message="公共模板Id不能为空", groups = {AddUserInternalGroup.class}) | 
				
			||||
 | 
					    private String publicId; | 
				
			||||
 | 
					    public interface AddUserInternalGroup {} | 
				
			||||
 | 
					} | 
				
			||||
 | 
					
 | 
				
			||||
@ -0,0 +1,30 @@ | 
				
			|||||
 | 
					package com.epmet.dto.result; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Description 获取客户小程序模板列表-接口返参 | 
				
			||||
 | 
					 * @Author sun | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class CustomerTemplateListResultDTO implements Serializable { | 
				
			||||
 | 
						private static final long serialVersionUID = 6856602932571839314L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						/** | 
				
			||||
 | 
						 * 模板Id | 
				
			||||
 | 
						 */ | 
				
			||||
 | 
						private String templateId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						/** | 
				
			||||
 | 
						 * 模板类型(站内信提醒) | 
				
			||||
 | 
						 */ | 
				
			||||
 | 
						private String templateType; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
						/** | 
				
			||||
 | 
						 * 所属端(居民端:resi  工作端:work) | 
				
			||||
 | 
						 */ | 
				
			||||
 | 
						private String clientType; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					} | 
				
			||||
					Loading…
					
					
				
		Reference in new issue