18 changed files with 103 additions and 21 deletions
@ -0,0 +1,29 @@ |
|||
package com.epmet.dataaggre.dto.epmetuser.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2021/8/27 10:40 |
|||
*/ |
|||
@Data |
|||
public class RoleListFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -3331980620366027460L; |
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
/** |
|||
* 是否包括我(1 是,0 否) |
|||
*/ |
|||
@NotBlank(message = "是否包括我不能为空") |
|||
private String includeMe; |
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
} |
Loading…
Reference in new issue