9 changed files with 93 additions and 10 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