gongchunyi
7 小时以前 263b034b4058bb7a36c709278abdc88ca1ba26c1
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
package com.ruoyi.production.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * <br>
 * 生产成本核算对比文件导入Dto
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/30
 */
@Data
@ApiModel(value = "SettlementImportDto", description = "生产成本核算对比文件导入Dto")
public class SettlementImportDto {
 
    @Excel(name = "产品类型")
    @ApiModelProperty("产品类型")
    private String productType;
 
    @Excel(name = "科目名称")
    @ApiModelProperty("科目名称")
    private String category;
 
    @Excel(name = "科目")
    @ApiModelProperty("科目")
    private String subjectName;
 
    @Excel(name = "成本预算")
    @ApiModelProperty("成本预算")
    private BigDecimal budgetTotal;
 
    @Excel(name = "耗量预算")
    @ApiModelProperty("耗量预算")
    private BigDecimal budgetQty;
 
    @Excel(name = "单价预算")
    @ApiModelProperty("单价预算")
    private BigDecimal budgetPrice;
}