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.

57 lines
881 B

3 years ago
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;
3 years ago
private String allNameCode;
3 years ago
}