2c6893503312d2842288c1c0aaf8eb6a85e709a5.svn-base 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package org.jeecg.modules.demo.hzz.shjsgc.lhgc.lhb.geo.entity;
  2. import java.io.Serializable;
  3. import java.io.UnsupportedEncodingException;
  4. import java.util.Date;
  5. import java.math.BigDecimal;
  6. import com.baomidou.mybatisplus.annotation.IdType;
  7. import com.baomidou.mybatisplus.annotation.TableId;
  8. import com.baomidou.mybatisplus.annotation.TableName;
  9. import lombok.Data;
  10. import com.fasterxml.jackson.annotation.JsonFormat;
  11. import org.springframework.format.annotation.DateTimeFormat;
  12. import org.jeecgframework.poi.excel.annotation.Excel;
  13. import org.jeecg.common.aspect.annotation.Dict;
  14. import io.swagger.annotations.ApiModel;
  15. import io.swagger.annotations.ApiModelProperty;
  16. import lombok.EqualsAndHashCode;
  17. import lombok.experimental.Accessors;
  18. /**
  19. * @Description: rm_lhbgeo
  20. * @Author: jeecg-boot
  21. * @Date: 2022-02-11
  22. * @Version: V1.0
  23. */
  24. @Data
  25. @TableName("rm_lhbgeo")
  26. @Accessors(chain = true)
  27. @EqualsAndHashCode(callSuper = false)
  28. @ApiModel(value="rm_lhbgeo对象", description="rm_lhbgeo")
  29. public class RmLhbgeo implements Serializable {
  30. private static final long serialVersionUID = 1L;
  31. /**id*/
  32. @TableId(type = IdType.ASSIGN_ID)
  33. @ApiModelProperty(value = "id")
  34. private Integer id;
  35. /**geom*/
  36. @Excel(name = "geom", width = 15)
  37. @ApiModelProperty(value = "geom")
  38. private String geom;
  39. /**lhbid*/
  40. @Excel(name = "lhbid", width = 15)
  41. @ApiModelProperty(value = "lhbid")
  42. private String lhbid;
  43. }