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.
96 lines
1.6 KiB
96 lines
1.6 KiB
package com.epmet.dto;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
import com.epmet.commons.tools.validator.group.AddGroup;
|
|
import com.epmet.commons.tools.validator.group.DefaultGroup;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
|
|
/**
|
|
* 疫情风险地区
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-10-31
|
|
*/
|
|
@Data
|
|
public class IcDangerAreaDTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* ID
|
|
*/
|
|
private String id;
|
|
|
|
/**
|
|
* 客户ID
|
|
*/
|
|
private String customerId;
|
|
|
|
/**
|
|
* 风险等级
|
|
*/
|
|
// @NotBlank(message = "dangerLevel不能为空",groups = {AddGroup.class})
|
|
private String dangerLevel;
|
|
|
|
/**
|
|
* 省
|
|
*/
|
|
// @NotBlank(message = "province不能为空",groups = {AddGroup.class})
|
|
private String province;
|
|
|
|
/**
|
|
* 市
|
|
*/
|
|
// @NotBlank(message = "city不能为空",groups = {AddGroup.class})
|
|
private String city;
|
|
|
|
/**
|
|
* 区
|
|
*/
|
|
// @NotBlank(message = "district不能为空",groups = {AddGroup.class})
|
|
private String district;
|
|
|
|
/**
|
|
* 省-市-区
|
|
*/
|
|
@NotBlank(message = "allName不能为空",groups = {AddGroup.class})
|
|
private String allName;
|
|
|
|
private String allNameCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Integer delFlag;
|
|
|
|
/**
|
|
* 乐观锁
|
|
*/
|
|
private Integer revision;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
private String createdBy;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createdTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
private String updatedBy;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updatedTime;
|
|
|
|
}
|