package com.ruoyi.sales.dto;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 销售报价产品导入DTO(报价产品数据Sheet)
|
*/
|
@Data
|
public class SalesQuotationProductImportDto {
|
|
@Excel(name = "报价单号")
|
@Schema(description = "报价单号(关联主表)")
|
private String quotationNo;
|
|
@Excel(name = "产品大类")
|
@Schema(description = "产品大类")
|
private String productCategory;
|
|
@Excel(name = "规格型号")
|
@Schema(description = "规格型号")
|
private String specificationModel;
|
|
@Excel(name = "单位")
|
@Schema(description = "单位")
|
private String unit;
|
|
@Excel(name = "单价")
|
@Schema(description = "单价")
|
private BigDecimal unitPrice;
|
|
@Excel(name = "备注")
|
@Schema(description = "备注")
|
private String remark;
|
}
|