package org.dromara.demo.domain.vo;
|
|
import org.dromara.demo.domain.RsGeographyData;
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import org.dromara.common.excel.annotation.ExcelDictFormat;
|
import org.dromara.common.excel.convert.ExcelDictConvert;
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
|
/**
|
* 数据上图视图对象 rs_geography_data
|
*
|
* @author gonghl
|
* @date 2024-03-07
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = RsGeographyData.class)
|
public class RsGeographyDataVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 编号
|
*/
|
@ExcelProperty(value = "编号")
|
private String id;
|
|
/**
|
* 类型
|
*/
|
@ExcelProperty(value = "类型")
|
private String type;
|
|
/**
|
* 名称
|
*/
|
@ExcelProperty(value = "名称")
|
private String name;
|
|
/**
|
* 街镇
|
*/
|
@ExcelProperty(value = "街镇")
|
private String townStreetName;
|
|
/**
|
* 描述
|
*/
|
@ExcelProperty(value = "描述")
|
private String description;
|
|
/**
|
* 标记状态 1已标记 2未标记
|
*/
|
@ExcelProperty(value = "标记状态")
|
private Integer status;
|
|
|
}
|