IndustryData.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.ruoyi.web.domain.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import com.fasterxml.jackson.annotation.JsonIgnore;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * 产业数据收集
  9. *
  10. * @TableName industry_data
  11. */
  12. @TableName(value = "industry_data")
  13. @Data
  14. public class IndustryData implements Serializable {
  15. /**
  16. * id
  17. */
  18. @TableId(type = IdType.AUTO)
  19. private Integer id;
  20. /**
  21. * 年份
  22. */
  23. private String years;
  24. /**
  25. * 产业类别:0-种植业/1-养殖业/2-保安腰刀产业/3-农家乐产业/4-民宿产业
  26. */
  27. private Integer category;
  28. /**
  29. * 产业规模
  30. */
  31. private String scale;
  32. /**
  33. * 产量
  34. */
  35. private String yield;
  36. /**
  37. * 产值
  38. */
  39. private String value;
  40. /**
  41. * 创建时间
  42. */
  43. private Date createTime;
  44. /**
  45. * 修改时间
  46. */
  47. private Date updateTime;
  48. /**
  49. * 删除标志
  50. */
  51. @TableLogic
  52. @JsonIgnore
  53. private String delFlag;
  54. @TableField(exist = false)
  55. private static final long serialVersionUID = 1L;
  56. }