package com.ruoyi.sales.dto;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 销售台账产品导出DTO
|
*/
|
@Data
|
public class SalesLedgerProductExportDto {
|
|
@Excel(name = "销售合同号")
|
private String salesContractNo;
|
|
@Excel(name = "产品大类")
|
private String productCategory;
|
|
@Excel(name = "规格型号")
|
private String specificationModel;
|
|
@Excel(name = "厚度(mm)")
|
private BigDecimal thickness;
|
|
@Excel(name = "楼层编号")
|
private String floorCode;
|
|
@Excel(name = "宽(mm)")
|
private BigDecimal width;
|
|
@Excel(name = "高(mm)")
|
private BigDecimal height;
|
|
@Excel(name = "数量")
|
private BigDecimal quantity;
|
|
@Excel(name = "结算单片面积(㎡)")
|
private BigDecimal settlePieceArea;
|
|
@Excel(name = "结算总面积(㎡)")
|
private BigDecimal settleTotalArea;
|
|
@Excel(name = "含税单价(元)")
|
private BigDecimal taxInclusiveUnitPrice;
|
|
@Excel(name = "税率(%)")
|
private BigDecimal taxRate;
|
|
@Excel(name = "含税总价(元)")
|
private BigDecimal taxInclusiveTotalPrice;
|
|
@Excel(name = "不含税总价(元)")
|
private BigDecimal taxExclusiveTotalPrice;
|
|
@Excel(name = "发票类型")
|
private String invoiceType;
|
|
@Excel(name = "加工要求")
|
private String processRequirement;
|
|
@Excel(name = "备注")
|
private String remark;
|
}
|