2026-04-23 c247f5bf64c98595cc7e4efc9e1ae7ff1df79c11
src/main/java/com/ruoyi/production/pojo/ProductionOrderPickRecord.java
@@ -1,8 +1,8 @@
package com.ruoyi.production.pojo;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
@@ -18,61 +18,60 @@
 * @author 芯导软件(江苏)有限公司
 * @since 2026-04-21 03:55:52
 */
@Getter
@Setter
@Data
@TableName("production_order_pick_record")
@ApiModel(value = "ProductionOrderPickRecord对象", description = "线边仓出入库记录")
@Schema(name = "ProductionOrderPickRecord对象", description = "线边仓出入库记录")
public class ProductionOrderPickRecord implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty("主键id")
    @Schema(description = "主键id")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @ApiModelProperty("关联领料单id(production_order_pick.id)")
    @Schema(description = "关联领料单id(production_order_pick.id)")
    private Long pickId;
    @ApiModelProperty("生产订单id")
    @Schema(description = "生产订单id")
    private Long productionOrderId;
    @ApiModelProperty("生产工单id")
    @Schema(description = "生产工单id")
    private Long productionOperationTaskId;
    @ApiModelProperty("产品规格id")
    @Schema(description = "产品规格id")
    private Integer productModelId;
    @ApiModelProperty("批号")
    @Schema(description = "批号")
    private String batchNo;
    @ApiModelProperty("领料数量")
    @Schema(description = "领料数量")
    private BigDecimal pickQuantity;
    @ApiModelProperty("领料前数量")
    @Schema(description = "领料前数量")
    private BigDecimal beforeQuantity;
    @ApiModelProperty("领料后剩余数量")
    @Schema(description = "领料后剩余数量")
    private BigDecimal afterQuantity;
    @ApiModelProperty("领料类型:1正常领料  2补料")
    @Schema(description = "领料类型:1正常领料  2补料")
    private Byte pickType;
    @ApiModelProperty("备注")
    @Schema(description = "备注")
    private String remark;
    @ApiModelProperty("创建时间")
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    @ApiModelProperty("更新时间")
    @Schema(description = "更新时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
    @ApiModelProperty("创建人ID")
    @Schema(description = "创建人ID")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
    @ApiModelProperty("部门ID")
    @Schema(description = "部门ID")
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}