| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.tms.domain.vo.QuoteDetailItem; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | @Excel(name = "系统编号") |
| | | @TableField("system_code") |
| | | private String systemCode; |
| | | |
| | | @TableField("customer_id") |
| | | private Integer customerId; |
| | | |
| | | |
| | | /** |
| | |
| | | @TableField("freight_price") |
| | | private BigDecimal freightPrice; |
| | | |
| | | @Excel(name = "币种") |
| | | @TableField("currency") |
| | | private String currency; |
| | | |
| | | |
| | | /** |
| | | * 状态 |
| | |
| | | @TableField("remark") |
| | | private String remark; |
| | | |
| | | @TableField("plan_type") |
| | | private Integer planType; |
| | | |
| | | @TableField(exist = false) |
| | | private List<QuoteDetailItem> quoteItems; |
| | | /** 税点 % */ |
| | | @Excel(name = "税点 %") |
| | | @TableField("tax_rate") |
| | | private BigDecimal taxRate; |
| | | |
| | | |
| | | /** 是否分段开票 0-否 1-是 */ |
| | | @Excel(name = "是否分段开票 0-否 1-是") |
| | | @TableField("is_segmented_invoice") |
| | | private Integer isSegmentedInvoice; |
| | | |
| | | |
| | | /** 第一段运费报价 */ |
| | | @Excel(name = "第一段运费报价") |
| | | @TableField("segment1_freight_quote") |
| | | private BigDecimal segment1FreightQuote; |
| | | |
| | | |
| | | /** 第一段运费币值 */ |
| | | @Excel(name = "第一段运费币值") |
| | | @TableField("segment1_currency") |
| | | private String segment1Currency; |
| | | |
| | | |
| | | /** 第一段税点 % */ |
| | | @Excel(name = "第一段税点 %") |
| | | @TableField("segment1_tax_rate") |
| | | private BigDecimal segment1TaxRate; |
| | | |
| | | |
| | | /** 第二段运费报价 */ |
| | | @Excel(name = "第二段运费报价") |
| | | @TableField("segment2_freight_quote") |
| | | private BigDecimal segment2FreightQuote; |
| | | |
| | | |
| | | /** 第二段运费币值 */ |
| | | @Excel(name = "第二段运费币值") |
| | | @TableField("segment2_currency") |
| | | private String segment2Currency; |
| | | |
| | | |
| | | /** 第二段税点 % */ |
| | | @Excel(name = "第二段税点 %") |
| | | @TableField("segment2_tax_rate") |
| | | private BigDecimal segment2TaxRate; |
| | | |
| | | |
| | | /** 总运费人民币报价 */ |
| | | @Excel(name = "总运费人民币报价") |
| | | @TableField("total_freight_cny") |
| | | private BigDecimal totalFreightCny; |
| | | |
| | | |
| | | /** 总运费港币报价 */ |
| | | @Excel(name = "总运费港币报价") |
| | | @TableField("total_freight_hkd") |
| | | private BigDecimal totalFreightHkd; |
| | | } |