package com.ruoyi.sales.dto;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
@Data
|
public class QuotationRecordJSON {
|
// 客户名称
|
private String customer;
|
// 业务员
|
private String salesperson;
|
// 报价日期
|
private String quotationDate;
|
// 有效期至
|
private String validDate;
|
// 付款方式
|
private String paymentMethod;
|
// 备注
|
private String remark;
|
|
private List<ProductJSON> products;
|
|
@Data
|
public static class ProductJSON {
|
private String product;
|
private String specification;
|
private String unit;
|
private BigDecimal unitPrice;
|
}
|
|
}
|