| | |
| | | package com.ruoyi.production.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | @Data |
| | | @TableName("production_order_pick") |
| | | @ApiModel(value = "ProductionOrderPick对象", description = "订单领料线边仓") |
| | | @Schema(name = "ProductionOrderPick对象", description = "订单领料线边仓") |
| | | public class ProductionOrderPick implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty("主键id") |
| | | @Schema(description = "主键id") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("产品规格id") |
| | | private Integer productModelId; |
| | | @Schema(description = "产品规格id") |
| | | private Long productModelId; |
| | | |
| | | @ApiModelProperty("数量") |
| | | @Schema(description = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @ApiModelProperty("批号") |
| | | @Schema(description = "批号") |
| | | private String batchNo; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @Schema(description = "更新时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("生产订单id") |
| | | @Schema(description = "生产订单id") |
| | | private Long productionOrderId; |
| | | |
| | | @ApiModelProperty("备注") |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @ApiModelProperty("创建人ID") |
| | | @Schema(description = "创建人ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | |
| | | @ApiModelProperty("部门ID") |
| | | @Schema(description = "部门ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "工序名称") |
| | | private String operationName; |
| | | |
| | | @Schema(description = "工序id") |
| | | private Long technologyOperationId; |
| | | |
| | | @Schema(description = "需求数量") |
| | | private BigDecimal demandedQuantity; |
| | | |
| | | @Schema(description = "补料总量") |
| | | private BigDecimal feedingQty; |
| | | |
| | | @Schema(description = "退料数量") |
| | | private BigDecimal returnQty; |
| | | |
| | | @Schema(description = "实际数量") |
| | | private BigDecimal actualQty; |
| | | |
| | | @Schema(description = "是否已退料") |
| | | @TableField("is_returned") |
| | | private Boolean returned; |
| | | |
| | | @Schema(description = "是否bom领料") |
| | | @TableField("is_bom") |
| | | private Boolean bom; |
| | | } |