| | |
| | | @TableField("description") |
| | | private String description; |
| | | |
| | | @ApiModelProperty(value = "产线编号") |
| | | @TableField("work_line") |
| | | private Integer workLine; |
| | | |
| | | @ApiModelProperty(value = "工程号(关联 engineering_sequence 表)", example = "P25010801") |
| | | @TableField("engineering_id") |
| | | private String engineeringId; |
| | | |
| | | @ApiModelProperty(value = "状态:0-初始保存, 1-已扫码交互", example = "0") |
| | | @TableField("state") |
| | | private Integer state; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @TableField(value = "created_time", fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | |
| | | // 状态常量 |
| | | public static final class Status { |
| | | public static final String ACTIVE = "ACTIVE"; // 活跃 |
| | | public static final String ACTIVE = "ACTIVE"; // 兼容旧数据 |
| | | public static final String ARCHIVED = "ARCHIVED"; // 已归档 |
| | | public static final String PENDING = "PENDING"; // 待卧转立处理 |
| | | public static final String PROCESSED = "PROCESSED"; // 已处理 |
| | | } |
| | | } |
| | | |