package com.ruoyi.tms.domain.vo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.ruoyi.common.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class QuoteDetailItem {
|
|
private Integer vehicleType;
|
|
|
private BigDecimal freightPrice;
|
|
private String currency;
|
|
|
|
|
/** 第一段运费报价 */
|
private BigDecimal segment1FreightQuote;
|
|
|
/** 第一段运费币值 */
|
private String segment1Currency;
|
|
|
/** 第一段税点 % */
|
private BigDecimal segment1TaxRate;
|
|
|
/** 第二段运费报价 */
|
private BigDecimal segment2FreightQuote;
|
|
|
/** 第二段运费币值 */
|
private String segment2Currency;
|
|
|
/** 第二段税点 % */
|
private BigDecimal segment2TaxRate;
|
|
|
/** 总运费人民币报价 */
|
private BigDecimal totalFreightCny;
|
|
|
/** 总运费港币报价 */
|
private BigDecimal totalFreightHkd;
|
|
}
|