package com.ruoyi.production.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.Getter; import lombok.Setter; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime; /** *

* 订单领料线边仓 *

* * @author 芯导软件(江苏)有限公司 * @since 2026-04-21 03:55:52 */ @Data @TableName("production_order_pick") @Schema(name = "ProductionOrderPick对象", description = "订单领料线边仓") public class ProductionOrderPick implements Serializable { private static final long serialVersionUID = 1L; @Schema(description = "主键id") @TableId(value = "id", type = IdType.AUTO) private Long id; @Schema(description = "产品规格id") private Integer productModelId; @Schema(description = "数量") private BigDecimal quantity; @Schema(description = "批号") private String batchNo; @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @Schema(description = "更新时间") @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @Schema(description = "生产订单id") private Long productionOrderId; @Schema(description = "备注") private String remark; @Schema(description = "创建人ID") @TableField(fill = FieldFill.INSERT) private Long createUser; @Schema(description = "部门ID") @TableField(fill = FieldFill.INSERT) private Long deptId; }