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; /** *
* 生产成本核算对比文件导入Dto *
* * @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; }