| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @Data |
| | | @ApiModel(value = "物资视图对象", description = "物视图对象") |
| | | public class SlGoodsMaterialsVO { |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | @ApiModelProperty("物资名称") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private String goodsMaterialsName; |
| | | |
| | | @ApiModelProperty("1 是非消耗,2是消耗 ") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer isConsume; |
| | | |
| | | @ApiModelProperty("预警库存") |
| | | @JsonInclude(JsonInclude.Include.ALWAYS) |
| | | private Integer repertory; |
| | | } |