| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * <p> |
| | | * ç产计å表 |
| | | * </p> |
| | | * |
| | | * @author è¯å¯¼è½¯ä»¶ï¼æ±èï¼æéå
¬å¸ |
| | | * @since 2026-04-21 02:11:10 |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | @TableName("production_plan") |
| | | @Schema(name = "ProductionPlan对象", description = "ç产计å表") |
| | | public class ProductionPlan implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "id") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Schema(description = "éå®å°è´¦id") |
| | | private Long salesLedgerId; |
| | | |
| | | @Schema(description = "éå®äº§åè§æ ¼id") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @Schema(description = "主ç产计åå·") |
| | | private String mpsNo; |
| | | |
| | | @Schema(description = "éæ±æ¥æ") |
| | | private LocalDate requiredDate; |
| | | |
| | | @Schema(description = "夿³¨") |
| | | private String remark; |
| | | |
| | | @Schema(description = "å建æ¶é´") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "æ´æ°æ¶é´") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @Schema(description = "åå»ºç¨æ·") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | |
| | | @Schema(description = "ä¿®æ¹ç¨æ·") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Long updateUser; |
| | | |
| | | @Schema(description = "é¨é¨ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "产ååå·id") |
| | | private Long productModelId; |
| | | |
| | | @Schema(description = "éæ±æ°é") |
| | | private BigDecimal qtyRequired; |
| | | |
| | | @Schema(description = "å·²ä¸åæ°é") |
| | | private BigDecimal quantityIssued; |
| | | |
| | | @Schema(description = "æ¥æº éå®/å
é¨") |
| | | private String source; |
| | | |
| | | @Schema(description = "æ¿è¯ºæ¥æ") |
| | | private LocalDate promisedDeliveryDate; |
| | | |
| | | @Schema(description = "ç¶æ 0æªä¸å 1é¨åä¸å 2å·²ä¸å") |
| | | private Integer status; |
| | | } |