8616117d9090a8736eeedf8c5e861d72ad081828.svn-base 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package org.jeecg.modules.demo.hzz.hhhj.glfwx.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.TableLogic;
  9. import com.baomidou.mybatisplus.annotation.TableName;
  10. import lombok.Data;
  11. import com.fasterxml.jackson.annotation.JsonFormat;
  12. import org.springframework.format.annotation.DateTimeFormat;
  13. import org.jeecgframework.poi.excel.annotation.Excel;
  14. import org.jeecg.common.aspect.annotation.Dict;
  15. import io.swagger.annotations.ApiModel;
  16. import io.swagger.annotations.ApiModelProperty;
  17. import lombok.EqualsAndHashCode;
  18. import lombok.experimental.Accessors;
  19. /**
  20. * @Description: rm_hhglfwx
  21. * @Author: jeecg-boot
  22. * @Date: 2021-12-29
  23. * @Version: V1.0
  24. */
  25. @Data
  26. @TableName("rm_hhglfwx")
  27. @Accessors(chain = true)
  28. @EqualsAndHashCode(callSuper = false)
  29. @ApiModel(value="rm_hhglfwx对象", description="rm_hhglfwx")
  30. public class RmHhglfwx implements Serializable {
  31. private static final long serialVersionUID = 1L;
  32. /**id*/
  33. @TableId(type = IdType.ASSIGN_ID)
  34. @ApiModelProperty(value = "id")
  35. private java.lang.String id;
  36. /**rvcd*/
  37. @Excel(name = "rvcd", width = 15)
  38. @ApiModelProperty(value = "rvcd")
  39. private java.lang.String rvcd;
  40. /**name*/
  41. @Excel(name = "name", width = 15)
  42. @ApiModelProperty(value = "name")
  43. private java.lang.String name;
  44. /**hhlx*/
  45. @Excel(name = "hhlx", width = 15)
  46. @ApiModelProperty(value = "hhlx")
  47. private java.lang.String hhlx;
  48. /**hhjb*/
  49. @Excel(name = "hhjb", width = 15)
  50. @ApiModelProperty(value = "hhjb")
  51. private java.lang.String hhjb;
  52. /**areaId*/
  53. @Excel(name = "areaId", width = 15)
  54. @ApiModelProperty(value = "areaId")
  55. private java.math.BigDecimal areaId;
  56. /**areaName*/
  57. @Excel(name = "areaName", width = 15)
  58. @ApiModelProperty(value = "areaName")
  59. private java.lang.String areaName;
  60. /**bak*/
  61. @Excel(name = "bak", width = 15)
  62. @ApiModelProperty(value = "bak")
  63. private java.lang.String bak;
  64. /**gclx*/
  65. @Excel(name = "gclx", width = 15)
  66. @ApiModelProperty(value = "gclx")
  67. private java.lang.String gclx;
  68. /**geoinfo*/
  69. @ApiModelProperty(value = "geoinfo")
  70. private java.lang.String geoinfo;
  71. /**createBy*/
  72. @ApiModelProperty(value = "createBy")
  73. private java.lang.String createBy;
  74. /**createTime*/
  75. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  76. @DateTimeFormat(pattern="yyyy-MM-dd")
  77. @ApiModelProperty(value = "createTime")
  78. private java.util.Date createTime;
  79. /**updateBy*/
  80. @ApiModelProperty(value = "updateBy")
  81. private java.lang.String updateBy;
  82. /**updateTime*/
  83. @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
  84. @DateTimeFormat(pattern="yyyy-MM-dd")
  85. @ApiModelProperty(value = "updateTime")
  86. private java.util.Date updateTime;
  87. /**sysOrgCode*/
  88. @ApiModelProperty(value = "sysOrgCode")
  89. private java.lang.String sysOrgCode;
  90. @TableLogic
  91. private String del_flag;
  92. }