7 changed files with 87 additions and 40 deletions
@ -1,33 +0,0 @@ |
|||||
package com.epmet.dto.form; |
|
||||
|
|
||||
import lombok.Data; |
|
||||
|
|
||||
import javax.validation.constraints.NotBlank; |
|
||||
import javax.validation.constraints.NotNull; |
|
||||
import java.io.Serializable; |
|
||||
import java.util.List; |
|
||||
|
|
||||
/** |
|
||||
* @Author zxc |
|
||||
* @DateTime 2022/3/28 13:47 |
|
||||
* @DESC |
|
||||
*/ |
|
||||
@Data |
|
||||
public class CancelAttentionFormDTO implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = 2252387281427013057L; |
|
||||
|
|
||||
public interface CancelAttentionForm{} |
|
||||
|
|
||||
/** |
|
||||
* 身份证 |
|
||||
*/ |
|
||||
@NotBlank(message = "idCard不能为空",groups = CancelAttentionForm.class) |
|
||||
private String idCard; |
|
||||
|
|
||||
/** |
|
||||
* 关注类型,核酸检测:2,疫苗接种:1 |
|
||||
*/ |
|
||||
@NotNull(message = "attentionType不能为空",groups = CancelAttentionForm.class) |
|
||||
private Integer attentionType ; |
|
||||
} |
|
Loading…
Reference in new issue