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.
|
|
|
package com.epmet.entity;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 疫情风险地区
|
|
|
|
*
|
|
|
|
* @author generator generator@elink-cn.com
|
|
|
|
* @since v1.0.0 2022-10-31
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
@TableName("ic_danger_area")
|
|
|
|
public class IcDangerAreaEntity extends BaseEpmetEntity {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 客户ID
|
|
|
|
*/
|
|
|
|
private String customerId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 风险等级
|
|
|
|
*/
|
|
|
|
private String dangerLevel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 省
|
|
|
|
*/
|
|
|
|
private String province;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 市
|
|
|
|
*/
|
|
|
|
private String city;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 区
|
|
|
|
*/
|
|
|
|
private String district;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 省-市-区
|
|
|
|
*/
|
|
|
|
private String allName;
|
|
|
|
|
|
|
|
private String allNameCode;
|
|
|
|
|
|
|
|
}
|