| | |
| | | |
| | | 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.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * |
| | |
| | | /** |
| | | * 编号 |
| | | */ |
| | | @NotNull(message="编号不能为空") |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long id; |
| | | /** |
| | |
| | | */ |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long orderId; |
| | | /** |
| | | * 产品实体编号 |
| | | */ |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | public Long proId; |
| | | |
| | | @TableField(exist = false) |
| | | public String name; |
| | | @TableField(exist = false) |
| | | public String proType; |
| | | |
| | | /** |
| | | * 生产数量 |
| | | */ |
| | |
| | | */ |
| | | public Integer completeNumber; |
| | | |
| | | @JSONField(serialize = false) |
| | | public Boolean deleted; |
| | | |
| | | @TableField(exist = false) |
| | | public String completeRate; |
| | | |
| | | } |