| | |
| | | @ApiModel(value = "SlGoodsMaterials对象", description = "物资管理") |
| | | public class SlGoodsMaterials { |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | @TableId(value = "id", type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | @TableField("goods_materials_name") |
| | | @ApiModelProperty("物资名称 ") |
| | | private String goodsMaterialsName; |
| | | |
| | | @ApiModelProperty("1 是非消耗,2是消耗 ") |
| | |
| | | @TableField("update_time") |
| | | private Date updateTime; |
| | | |
| | | @ApiModelProperty("库存总数") |
| | | @TableField("repertory_sum") |
| | | private Integer repertorySum; |
| | | |
| | | @ApiModelProperty("在库存的") |
| | | @TableField("repertory_zhai") |
| | | private Integer repertoryZhai; |
| | | |
| | | @ApiModelProperty("出库存的") |
| | | @TableField("repertory_chu") |
| | | private Integer repertoryChu; |
| | | |
| | | @ApiModelProperty("遗失库存的") |
| | | @TableField("repertory_yishi") |
| | | private Integer repertoryYishi; |
| | | |
| | | @ApiModelProperty("盘点数量") |
| | | @TableField("check_num") |
| | | private Integer checkNum; |
| | | |
| | | |
| | | } |