| | |
| | | |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.dy.common.po.BaseEntity; |
| | | import jakarta.validation.constraints.NotNull; |
| | |
| | | @NotNull(message="[用户实体编号]不能为空") |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long userId; |
| | | |
| | | @TableField(exist = false) |
| | | public String userName; |
| | | /** |
| | | * 生产线实体编号 |
| | | */ |
| | |
| | | @NotNull(message="[工站实体编号]不能为空") |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long stationId; |
| | | |
| | | @TableField(exist = false) |
| | | public String stationName; |
| | | |
| | | /** |
| | | * 组装生产任务实体编号 |
| | | */ |