| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.ruoyi.web.domain.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 产业数据收集
- *
- * @TableName industry_data
- */
- @TableName(value = "industry_data")
- @Data
- public class IndustryData implements Serializable {
- /**
- * id
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 年份
- */
- private String years;
- /**
- * 产业类别:0-种植业/1-养殖业/2-保安腰刀产业/3-农家乐产业/4-民宿产业
- */
- private Integer category;
- /**
- * 产业规模
- */
- private String scale;
- /**
- * 产量
- */
- private String yield;
- /**
- * 产值
- */
- private String value;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 修改时间
- */
- private Date updateTime;
- /**
- * 删除标志
- */
- @TableLogic
- @JsonIgnore
- private String delFlag;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|