| | |
| | | import io.swagger.annotations.Api; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | @TableName("nc_assign_file_stream") |
| | | @Api(value= "流程操作") |
| | | @Api(value= "DNC指派设备流程操作") |
| | | public class AssignFileStream { |
| | | @TableId(value = "stream_id") |
| | | private String streamId; |
| | |
| | | private String partsId; |
| | | @TableField(value = "process_id") |
| | | private String processId; |
| | | @TableField(value = "step_id") |
| | | private String stepId; |
| | | @TableField(value = "doc_id") |
| | | private String docId; |
| | | @TableField(value = "file_id") |
| | |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | private Date approveTime; |
| | | @TableField(value = "status") |
| | | @Dict(dicCode = "dnc_assign_stream_status") |
| | | private Integer status; |
| | | @JsonIgnore |
| | | @TableField(value = "create_time", select = false, fill = FieldFill.INSERT) |
| | |
| | | @TableLogic |
| | | @TableField(value = "delete_flag", select = false) |
| | | private Integer deleteFlag = 0; |
| | | |
| | | /**指派设备专用-所属ID*/ |
| | | private transient String attributionId; |
| | | |
| | | /**指派设备专用-所属type*/ |
| | | private transient String attributionType; |
| | | } |