package org.dromara.demo.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.util.Date;
|
|
/**
|
* 数据上图对象 rs_geography_data
|
*
|
* @author gonghl
|
* @date 2024-03-07
|
*/
|
@Data
|
@TableName("rs_geography_data")
|
public class RsGeographyData {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 编号
|
*/
|
@TableId(value = "id")
|
private String id;
|
|
/**
|
* 类型
|
*/
|
private String type;
|
|
/**
|
* 名称
|
*/
|
private String name;
|
|
/**
|
* 描述
|
*/
|
private String description;
|
|
/**
|
* 标记状态 1已标记 2未标记
|
*/
|
private Integer status;
|
|
private Date createTime;
|
|
}
|