|  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
 |  |  | import com.dy.common.po.BaseEntity; | 
 |  |  | import com.dy.pmsGlobal.pojoBa.BaUser; | 
 |  |  | import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan; | 
 |  |  | import jakarta.validation.constraints.NotNull; | 
 |  |  | import lombok.*; | 
 |  |  |  | 
 |  |  | 
 |  |  |     /** | 
 |  |  |     * 生产线实体编号 | 
 |  |  |     */ | 
 |  |  |     @NotNull(message="[生产线实体编号]不能为空") | 
 |  |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
 |  |  |     public Long lineId; | 
 |  |  |  | 
 |  |  | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String stationName; | 
 |  |  |  | 
 |  |  |     @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
 |  |  |     public Long proId; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String proName; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String devicePrefix; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 组装生产任务实体编号 | 
 |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public String nodeName; | 
 |  |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     public PrAssemblyPlan plan; | 
 |  |  |     public Integer workType; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 任务认领时间 | 
 |  |  |     */ |