5 changed files with 62 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 备忘录-难点读点 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2022-03-15 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MemoDifficultyDetailFromDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
public interface Detail extends CustomerClientShowGroup {} |
||||
|
|
||||
|
/** |
||||
|
* id |
||||
|
*/ |
||||
|
@NotBlank(message = "难点堵点Id不能为空", groups = { Detail.class }) |
||||
|
private String id; |
||||
|
/** |
||||
|
* 阅读标记1 已读;0未读 |
||||
|
*/ |
||||
|
@NotNull(message = "阅读标记不能为空", groups = { Detail.class }) |
||||
|
private Integer readFlag; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue