package com.newfiber.api.pc.model.meet; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * @Author:zzh * @CreateDate:2020/11/25 13:12 * @Description: */ @Data @NoArgsConstructor @TableName("house_site_supplies") public class HouseSiteSupplies implements Serializable{ @TableId(value = "sup_id",type = IdType.AUTO) private Integer supId; /** 物资名称 */ @TableField("sup_name") private String supName; /** 物资单位 */ @TableField("unit") private String unit; /** 物资数量 */ @TableField("sup_count") private Integer supCount; /** 存放点id */ @TableField("h_id") private Integer hId; @TableField("nature") /** 物资性质 */ private Integer nature; @TableField(exist = false) private Integer checkCount = new Integer(0); }