| | |
| | | package com.ruoyi.production.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | 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; |
| | | |
| | | /** |
| | |
| | | private String mpsNo; |
| | | |
| | | @Schema(description = "需求日期") |
| | | private LocalDateTime requiredDate; |
| | | private LocalDate requiredDate; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | |
| | | @Schema(description = "需求数量") |
| | | private BigDecimal qtyRequired; |
| | | |
| | | @Schema(description = "状态") |
| | | @TableLogic |
| | | private String state; |
| | | |
| | | @Schema(description = "是否下发制造订单") |
| | | private Boolean issued; |
| | | |
| | |
| | | private String isAudit; |
| | | |
| | | @Schema(description = "承诺日期") |
| | | private LocalDateTime promisedDeliveryDate; |
| | | private LocalDate promisedDeliveryDate; |
| | | |
| | | @Schema(description = "申请单编号") |
| | | private String applyNo; |