4f1278f2426b42381fc7fff80e85a31f92b8d8eb.svn-base 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package org.jeecg.modules.demo.hzz.axgh.axlh.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_axlh
  20. * @Author: jeecg-boot
  21. * @Date: 2022-01-19
  22. * @Version: V1.0
  23. */
  24. @Data
  25. @TableName("rm_axlh")
  26. @Accessors(chain = true)
  27. @EqualsAndHashCode(callSuper = false)
  28. @ApiModel(value="rm_axlh对象", description="rm_axlh")
  29. public class RmAxlh implements Serializable {
  30. private static final long serialVersionUID = 1L;
  31. /**id*/
  32. @TableId(type = IdType.ASSIGN_ID)
  33. @ApiModelProperty(value = "id")
  34. private java.lang.String id;
  35. /**geom*/
  36. // @Excel(name = "geom", width = 15)
  37. @ApiModelProperty(value = "geom")
  38. private java.lang.String geom;
  39. /**hlmc*/
  40. @Excel(name = "hlmc", width = 15)
  41. @ApiModelProperty(value = "hlmc")
  42. private java.lang.String hlmc;
  43. /**hlbm*/
  44. @Excel(name = "hlbm", width = 15)
  45. @ApiModelProperty(value = "hlbm")
  46. private java.lang.String hlbm;
  47. /**ab*/
  48. @Excel(name = "ab", width = 15)
  49. @Dict(dicCode = "ab")
  50. @ApiModelProperty(value = "ab")
  51. private java.lang.String ab;
  52. /**lhcd*/
  53. @Excel(name = "lhcd", width = 15)
  54. @ApiModelProperty(value = "lhcd")
  55. private java.lang.Double lhcd;
  56. /**lhkd*/
  57. @Excel(name = "lhkd", width = 15)
  58. @ApiModelProperty(value = "lhkd")
  59. private java.lang.Double lhkd;
  60. /**geopath*/
  61. // @Excel(name = "geopath", width = 15)
  62. @ApiModelProperty(value = "geopath")
  63. private java.lang.String geopath;
  64. /**geoinfo*/
  65. // @Excel(name = "geoinfo", width = 15)
  66. @ApiModelProperty(value = "geoinfo")
  67. private java.lang.String geoinfo;
  68. }