| | |
| | | @ApiModelProperty(value = "工艺名称") |
| | | private String name; |
| | | |
| | | private String quota; |
| | | @ApiModelProperty(value = "父级") |
| | | private String father; |
| | | |
| | | @ApiModelProperty(value = "设备组") |
| | | private String deviceGroup; |
| | | |
| | | @ApiModelProperty(value = "关联 型号id") |
| | | private Integer specificationsId; |
| | | |
| | | @ApiModelProperty(value = "生产定额(个/天)") |
| | | private Integer productionQuota; |
| | | |
| | | /** |
| | | * 版本 |
| | | **/ |
| | | private Integer version; |
| | | |
| | | @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true) |
| | | @TableLogic(value = "1", delval = "0") |
| | | private Integer state; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @ApiModelProperty(value = "创建时间", hidden = true) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @ApiModelProperty(value = "更新时间", hidden = true) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date updateTime; |
| | | |
| | | @ApiModelProperty(value = "关联 规格id") |
| | | private Integer specificationsId; |
| | | |
| | | @ApiModelProperty(value = "关联 设备id") |
| | | private Integer deviceId; |
| | | |
| | | |
| | | } |