liyong
5 小时以前 1ca5584d7e3200a9af65a099bd26d3593e2ba702
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.ruoyi.production.bean.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
/**
 * <br>
 * 销售生产需求 Excel导入导出DTO
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/11 11:28
 */
@Data
@Schema(name = "销售生产需求 Excel导入导出DTO")
public class ProductionPlanImportDto {
 
    @Schema(description = "主生产计划号")
    @Excel(name = "主生产计划号")
    private String mpsNo;
 
    @Schema(description = "需求日期")
    @Excel(name = "需求日期")
    private LocalDate requiredDate;
 
    @Schema(description = "备注")
    @Excel(name = "备注")
    private String remark;
 
    @Schema(description = "需求数量")
    @Excel(name = "需求数量")
    private BigDecimal qtyRequired;
 
    @Schema(description = "来源 销售/内部")
    @Excel(name = "来源 销售/内部")
    private String source;
 
    @Schema(description = "承诺日期")
    @Excel(name = "承诺日期")
    private LocalDate promisedDeliveryDate;
 
    @Schema(description = "产品名称")
    @Excel(name = "产品名称")
    private String productName;
 
    @Schema(description = "规格型号")
    @Excel(name = "规格型号")
    private String model;
 
    @Schema(description = "单位")
    @Excel(name = "单位")
    private String unit;
 
 
    /**
     * 创建人
     */
    @Schema(description = "创建人")
    @Excel(name = "创建人", type = Excel.Type.EXPORT)
    private String creatorName;
 
    /**
     * 修改人
     */
    @Schema(description = "修改人")
    @Excel(name = "修改人", type = Excel.Type.EXPORT)
    private String modifierName;
 
 
    /**
     * 已下发数量
     */
    @Schema(description = "已下发数量")
    @Excel(name = "已下发数量", type = Excel.Type.EXPORT)
    private BigDecimal assignedQuantity;
}