You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
2.0 KiB

3 years ago
package com.epmet.dto;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
3 years ago
/**
* 疫情特别关注
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-03-28
*/
@Data
public class IcEpidemicSpecialAttentionDTO implements Serializable {
private static final long serialVersionUID = 1L;
public interface IcEpidemicSpecialAttention{}
3 years ago
/**
* ID
*/
private String id;
/**
* 客户ID
*/
private String customerId;
/**
* 当前工作人员所属组织ID
*/
private String orgId;
/**
* 组织ID上级
*/
private String pid;
/**
* 组织ID所有上级
*/
private String pids;
/**
* 是否关注 1关注0取消关注
*/
@NotNull(message = "isAttention不能为空",groups = IcEpidemicSpecialAttention.class)
private Integer isAttention;
3 years ago
/**
* 关注类型核酸检测2疫苗接种1
*/
private Integer attentionType;
/**
* 姓名
*/
@NotBlank(message = "name不能为空",groups = IcEpidemicSpecialAttention.class)
private String name;
3 years ago
/**
* 手机号
*/
@NotBlank(message = "mobile不能为空",groups = IcEpidemicSpecialAttention.class)
private String mobile;
3 years ago
/**
* 身份证号
*/
@NotBlank(message = "idCard不能为空",groups = IcEpidemicSpecialAttention.class)
private String idCard;
3 years ago
/**
* 原因
*/
private String reason;
/**
* 备注
*/
private String remark;
/**
*
*/
private Integer delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}