| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.dy.common.po.BaseEntity; |
| | | import jakarta.validation.Valid; |
| | | import jakarta.validation.constraints.NotEmpty; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 组装生产任务计划 |
| | |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | @NotNull(message = "产品实体编号不能为空") |
| | | public Long proId; |
| | | |
| | | /** |
| | | * 产品实体编号 |
| | | */ |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long orderId; |
| | | |
| | | @TableField(exist = false) |
| | | public String orderName; |
| | | |
| | | /** |
| | | * 批次实体编号 |
| | |
| | | public Integer status; |
| | | |
| | | /** |
| | | * 投入生产数量 |
| | | */ |
| | | public Integer inputNumber; |
| | | /** |
| | | * 产出数量 |
| | | */ |
| | | public Integer outputNumber; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |