package com.yb.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.HashMap;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
/**
|
* ${comments}
|
*
|
* @author yw
|
* @email leutu@qq.com
|
* @date 2024-09-04 11:00:45
|
*/
|
@Data
|
@TableName(value = "t_meta", autoResultMap = true)
|
public class TMetaEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* $column.comments
|
*/
|
|
|
private Boolean defaultvisilibity;
|
/**
|
* $column.comments
|
*/
|
|
|
private String arearender;
|
/**
|
* $column.comments
|
*/
|
|
|
private String description;
|
/**
|
* $column.comments
|
*/
|
|
|
private String parentid;
|
/**
|
* $column.comments
|
*/
|
|
|
private String businessfield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String displayscale;
|
/**
|
* $column.comments
|
*/
|
|
|
private String lablefield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String defaultlod;
|
/**
|
* $column.comments
|
*/
|
|
|
private String servicename;
|
/**
|
* $column.comments
|
*/
|
@TableId(value = "id", type = IdType.INPUT)
|
private String id;
|
/**
|
* $column.comments
|
*/
|
|
|
private String tablename;
|
/**
|
* $column.comments
|
*/
|
|
|
private String displayfield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String childlayerid;
|
/**
|
* $column.comments
|
*/
|
|
|
private String lods;
|
/**
|
* $column.comments
|
*/
|
|
|
private String dataformat;
|
/**
|
* $column.comments
|
*/
|
|
|
private String versionfield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String linerender;
|
/**
|
* $column.comments
|
*/
|
|
|
private Integer _data_type;
|
/**
|
* $column.comments
|
*/
|
|
|
private Integer displayorder;
|
/**
|
* $column.comments
|
*/
|
|
|
private String lableinfo;
|
/**
|
* $column.comments
|
*/
|
|
|
private String pointrender;
|
/**
|
* $column.comments
|
*/
|
|
|
private Boolean expand;
|
/**
|
* $column.comments
|
*/
|
|
|
private String relfield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String polygonlod;
|
/**
|
* $column.comments
|
*/
|
|
|
private String name;
|
/**
|
* $column.comments
|
*/
|
|
|
private String pointlod;
|
/**
|
* $column.comments
|
*/
|
|
|
private Boolean isfolder;
|
/**
|
* $column.comments
|
*/
|
|
|
private String polylinelod;
|
/**
|
* $column.comments
|
*/
|
|
|
private String logitudefield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String latitudefield;
|
/**
|
* $column.comments
|
*/
|
|
|
private String heightfield;
|
|
|
}
|