|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.alibaba.fastjson2.annotation.JSONField; | 
|---|
|  |  |  | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
|---|
|  |  |  | import com.dy.common.webUtil.QueryConditionVo; | 
|---|
|  |  |  | import jakarta.validation.constraints.NotNull; | 
|---|
|  |  |  | import lombok.*; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @Builder | 
|---|
|  |  |  | public class QueryVo { | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long id; | 
|---|
|  |  |  | public Long workId; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 用户实体编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 组装生产任务实体编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull(message="[组装生产任务实体编号]不能为空") | 
|---|
|  |  |  | //@NotNull(message="[组装生产任务实体编号]不能为空") | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long planId; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 生产流程实体编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull(message="[生产流程实体编号]不能为空") | 
|---|
|  |  |  | //@NotNull(message="[生产流程实体编号]不能为空") | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long processId; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 生产流程节点实体编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @NotNull(message="[生产流程节点实体编号]不能为空") | 
|---|
|  |  |  | //@NotNull(message="[生产流程节点实体编号]不能为空") | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long nodeId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //@NotNull(message="[生产流程节点类型]不能为空") | 
|---|
|  |  |  | @NotNull(message="[工作职责]不能为空") | 
|---|
|  |  |  | public Integer workType; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 任务认领时间 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  | * 辅助人员:辅助员工id,以逗号隔开 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public String assistants; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|