gongchunyi
11 小时以前 a497406167f500741ac6cc1d24e086589972eb49
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
package com.ruoyi.production.dto;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.production.pojo.ProductOrder;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
@ExcelIgnoreUnannotated
public class ProductOrderDto extends ProductOrder {
 
    @ApiModelProperty(value = "产品名称")
    @Excel(name = "产品名称")
    private String productName;
 
    @ApiModelProperty(value = "规格")
    @Excel(name = "规格")
    private String model;
 
    @ApiModelProperty(value = "产品类型")
    @Excel(name = "产品类型")
    private String strength;
 
    @ApiModelProperty(value = "工艺路线描述")
    @Excel(name = "工艺路线描述")
    private String description;
 
    @ApiModelProperty(value = "工艺路线产品类型")
    @Excel(name = "工艺路线产品类型")
    private String dictLabel;
 
    @ApiModelProperty(value = "物料编码")
    @Excel(name = "物料编码")
    private String materialCode;
 
    @ApiModelProperty(value = "工艺路线编号")
    @Excel(name = "工艺路线编号")
    private String processRouteCode;
 
    @ApiModelProperty(value = "完成进度")
    @Excel(name = "完成进度", suffix = "%")
    private BigDecimal completionStatus;
 
    @ApiModelProperty(value = "BOM ID")
    @Excel(name = "BOM ID")
    private String bomId;
 
    @ApiModelProperty(value = "BOM编号")
    @Excel(name = "BOM编号")
    private String bomNo;
 
    @ApiModelProperty(value = "交期偏差")
    private Integer deliveryDaysDiff;
 
    @ApiModelProperty(value = "交期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate deliveryDate;
 
    //是否发货(台账页面颜色控制)
    private Boolean isFh;
}