123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package org.jeecg.modules.demo.hzz.axgh.axlh.entity;
- import java.io.Serializable;
- import java.io.UnsupportedEncodingException;
- import java.util.Date;
- import java.math.BigDecimal;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.springframework.format.annotation.DateTimeFormat;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import org.jeecg.common.aspect.annotation.Dict;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * @Description: rm_axlh
- * @Author: jeecg-boot
- * @Date: 2022-01-19
- * @Version: V1.0
- */
- @Data
- @TableName("rm_axlh")
- @Accessors(chain = true)
- @EqualsAndHashCode(callSuper = false)
- @ApiModel(value="rm_axlh对象", description="rm_axlh")
- public class RmAxlh implements Serializable {
- private static final long serialVersionUID = 1L;
- /**id*/
- @TableId(type = IdType.ASSIGN_ID)
- @ApiModelProperty(value = "id")
- private java.lang.String id;
- /**geom*/
- // @Excel(name = "geom", width = 15)
- @ApiModelProperty(value = "geom")
- private java.lang.String geom;
- /**hlmc*/
- @Excel(name = "hlmc", width = 15)
- @ApiModelProperty(value = "hlmc")
- private java.lang.String hlmc;
- /**hlbm*/
- @Excel(name = "hlbm", width = 15)
- @ApiModelProperty(value = "hlbm")
- private java.lang.String hlbm;
- /**ab*/
- @Excel(name = "ab", width = 15)
- @Dict(dicCode = "ab")
- @ApiModelProperty(value = "ab")
- private java.lang.String ab;
- /**lhcd*/
- @Excel(name = "lhcd", width = 15)
- @ApiModelProperty(value = "lhcd")
- private java.lang.Double lhcd;
- /**lhkd*/
- @Excel(name = "lhkd", width = 15)
- @ApiModelProperty(value = "lhkd")
- private java.lang.Double lhkd;
- /**geopath*/
- // @Excel(name = "geopath", width = 15)
- @ApiModelProperty(value = "geopath")
- private java.lang.String geopath;
- /**geoinfo*/
- // @Excel(name = "geoinfo", width = 15)
- @ApiModelProperty(value = "geoinfo")
- private java.lang.String geoinfo;
- }
|