forked from luyan/epmet-cloud-lingshan
				
			
				 8 changed files with 88 additions and 9 deletions
			
			
		| @ -0,0 +1,20 @@ | |||
| package com.epmet.dto.form; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import javax.validation.constraints.NotBlank; | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @description: | |||
|  * @author: liushaowen | |||
|  * @date: 2020/12/29 13:20 | |||
|  */ | |||
| @Data | |||
| public class TemplateListV2FormDTO implements Serializable { | |||
|     private static final long serialVersionUID = 1L; | |||
|     @NotBlank(message = "customerId不能为空") | |||
|     private String customerId; | |||
|     @NotBlank(message = "app不能为空") | |||
|     private String app; | |||
| } | |||
| @ -0,0 +1,21 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @description: | |||
|  * @author: liushaowen | |||
|  * @date: 2020/12/29 13:19 | |||
|  */ | |||
| @Data | |||
| public class TemplateListV2ResultDTO implements Serializable { | |||
|     private static final long serialVersionUID = 1L; | |||
|     //类型id
 | |||
|     private String tid; | |||
|     //类型名称
 | |||
|     private String type; | |||
| 
 | |||
|     private String templateId; | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue