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

修改订单报价方式为0:未税,1:含税

上级 58fe02dc
...@@ -17,11 +17,11 @@ public enum PlatformServiceFeeConfigEnum { ...@@ -17,11 +17,11 @@ public enum PlatformServiceFeeConfigEnum {
/** /**
* 未税 * 未税
*/ */
TAX_EXCLUDED(1, "未税"), TAX_EXCLUDED(0, "未税"),
/** /**
* 含税 * 含税
*/ */
TAX_INCLUDED(2, "含税"); TAX_INCLUDED(1, "含税");
private final Integer code; private final Integer code;
private final String msg; private final String msg;
......
...@@ -15,7 +15,7 @@ public class SavePlatformServiceFeeConfigParam { ...@@ -15,7 +15,7 @@ public class SavePlatformServiceFeeConfigParam {
@ApiModelProperty(value = "id") @ApiModelProperty(value = "id")
private Integer id; private Integer id;
@ApiModelProperty(value = "订单报价方式,1:未税,2:含税") @ApiModelProperty(value = "订单报价方式,0:未税,1:含税")
private Integer orderQuotationType; private Integer orderQuotationType;
@ApiModelProperty(value = "接单保证金,最多保留两位小数") @ApiModelProperty(value = "接单保证金,最多保留两位小数")
private BigDecimal deposit; private BigDecimal deposit;
......
...@@ -18,7 +18,7 @@ public class CarrierPagePlatformServiceFeeConfigVO { ...@@ -18,7 +18,7 @@ public class CarrierPagePlatformServiceFeeConfigVO {
@ApiModelProperty(value = "id") @ApiModelProperty(value = "id")
private Integer id; private Integer id;
@ApiModelProperty(value = "订单报价方式,1:未税,2:含税") @ApiModelProperty(value = "订单报价方式,0:未税,1:含税")
private Integer orderQuotationType; private Integer orderQuotationType;
@ApiModelProperty(value = "订单报价方式") @ApiModelProperty(value = "订单报价方式")
private String orderQuotationTypeMsg; private String orderQuotationTypeMsg;
......
...@@ -25,7 +25,7 @@ public class PlatformServiceFeeConfig implements HasKey<Integer> { ...@@ -25,7 +25,7 @@ public class PlatformServiceFeeConfig implements HasKey<Integer> {
private Integer id; private Integer id;
/** /**
* 订单报价方式,1:未税,2:含税 * 订单报价方式,0:未税,1:含税
*/ */
private Integer orderQuotationType; private Integer orderQuotationType;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论