记得上下班打卡 | git大法好,push需谨慎

Commit cde5b261 authored by jiangxiulong's avatar jiangxiulong

去掉support_pay_type

parent c49f0f9a
......@@ -50,10 +50,6 @@ public class ExpressModuleFromParam implements Serializable, Cloneable {
@NotNull(message = "快递预估价格不能为空max")
private BigDecimal estimatePriceMax;
@ApiModelProperty(value = "支持的付款方式 多个逗号分割 1寄付 2到付", example = "1,2")
@NotNull(message = "支持的付款方式不能为空")
private String supportPayType;
@ApiModelProperty(value = "是否上线 1未上线 2已上线", example = "429803743878963206506461")
@NotNull(message = "是否上线不能为空") @Min(value = 1, message = "isOnline无效") @Max(value = 2, message = "isOnline无效")
private Integer isOnline;
......@@ -76,7 +72,6 @@ public class ExpressModuleFromParam implements Serializable, Cloneable {
expressModule.setAgingType(source.getAgingType());
expressModule.setEstimatePriceMin(source.getEstimatePriceMin());
expressModule.setEstimatePriceMax(source.getEstimatePriceMax());
expressModule.setSupportPayType(source.getSupportPayType());
expressModule.setIsOnline(source.getIsOnline());
return expressModule;
}
......
......@@ -43,9 +43,6 @@ public class KylinExpressModuleVo implements Serializable {
@ApiModelProperty(value = "快递预估价格大")
private BigDecimal estimatePriceMax;
@ApiModelProperty(value = "支持的付款方式 1寄付 2到付 多个逗号分割")
private String supportPayType;
@ApiModelProperty(value = "是否上线 1未上线 2已上线")
private Integer isOnline;
......@@ -74,7 +71,6 @@ public class KylinExpressModuleVo implements Serializable {
expressModuleVo.setAgingType(source.getAgingType());
expressModuleVo.setEstimatePriceMin(source.getEstimatePriceMin());
expressModuleVo.setEstimatePriceMax(source.getEstimatePriceMax());
expressModuleVo.setSupportPayType(source.getSupportPayType());
expressModuleVo.setIsOnline(source.getIsOnline());
expressModuleVo.setCreatedAt(source.getCreatedAt());
expressModuleVo.setUpdatedAt(source.getUpdatedAt());
......
......@@ -55,11 +55,6 @@ public class KylinExpressModule implements Serializable {
*/
private BigDecimal estimatePriceMax;
/**
* 支持的付款方式逗号分割 1寄付 2到付
*/
private String supportPayType;
/**
* 是否上线 1未上线 2已上线
*/
......
......@@ -9,7 +9,6 @@ CREATE TABLE `kylin_express_module`
`aging_type` varchar(255) NOT NULL DEFAULT '' COMMENT '时效类型',
`estimate_price_min` decimal(10, 2) NOT NULL DEFAULT 0 COMMENT '快递价格(预估)',
`estimate_price_max` decimal(10, 2) NOT NULL DEFAULT 0 COMMENT '快递价格(预估)',
`support_pay_type` varchar(255) NOT NULL DEFAULT 0 COMMENT '支持的付款方式逗号分割 1寄付 2到付',
`is_online` tinyint NOT NULL DEFAULT 0 COMMENT '是否上线 1未上线 2已上线',
`created_at` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment