提交 bbb1d867 authored 作者: 杨启发's avatar 杨启发

接单保证金,单位改成分

上级 e28eb5e9
package com.clx.performance.param.pc.carrier;
import com.msl.common.convertor.type.MoneyInConvert;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
......@@ -17,7 +18,8 @@ public class SavePlatformServiceFeeConfigParam {
private Integer id;
@ApiModelProperty(value = "订单报价方式,0:未税,1:含税")
private Integer orderQuotationType;
@ApiModelProperty(value = "接单保证金,最多保留两位小数")
@ApiModelProperty(value = "接单保证金")
@MoneyInConvert
private BigDecimal deposit;
@ApiModelProperty(value = "平台服务费费率")
private BigDecimal serviceFeeRate;
......
package com.clx.performance.vo.pc.carrier.settle;
import com.msl.common.convertor.type.MoneyOutConvert;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
......@@ -22,7 +23,8 @@ public class CarrierPagePlatformServiceFeeConfigVO {
private Integer orderQuotationType;
@ApiModelProperty(value = "订单报价方式")
private String orderQuotationTypeMsg;
@ApiModelProperty(value = "接单保证金,最多保留两位小数")
@ApiModelProperty(value = "接单保证金")
@MoneyOutConvert
private BigDecimal deposit;
@ApiModelProperty(value = "平台服务费费率")
private BigDecimal serviceFeeRate;
......
......@@ -30,7 +30,7 @@ public class PlatformServiceFeeConfig implements HasKey<Integer> {
private Integer orderQuotationType;
/**
* 接单保证金,最多保留两位小数
* 接单保证金,单位分
*/
private BigDecimal deposit;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论