mall + trade:review 运费价格计算
parent
36ce968893
commit
910d374cee
@ -0,0 +1,25 @@
|
|||||||
|
package cn.iocoder.yudao.module.trade.controller.admin.delivery.vo.expresstemplate;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 快递运费模板的详细 Response VO")
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@ToString(callSuper = true)
|
||||||
|
public class DeliveryExpressTemplateDetailRespVO extends DeliveryExpressTemplateBaseVO {
|
||||||
|
|
||||||
|
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "371")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@Schema(description = "运费模板运费设置", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
|
private List<ExpressTemplateChargeBaseVO> templateCharge;
|
||||||
|
|
||||||
|
@Schema(description = "运费模板包邮区域", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
|
private List<ExpressTemplateFreeBaseVO> templateFree;
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,28 +1,19 @@
|
|||||||
package cn.iocoder.yudao.module.trade.controller.admin.delivery.vo.expresstemplate;
|
package cn.iocoder.yudao.module.trade.controller.admin.delivery.vo.expresstemplate;
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.*;
|
||||||
import lombok.EqualsAndHashCode;
|
import java.time.LocalDateTime;
|
||||||
import lombok.ToString;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author jason
|
|
||||||
*/
|
|
||||||
@Schema(description = "管理后台 - 快递运费模板 Response VO")
|
@Schema(description = "管理后台 - 快递运费模板 Response VO")
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
@ToString(callSuper = true)
|
@ToString(callSuper = true)
|
||||||
public class DeliveryExpressTemplateRespVO extends DeliveryExpressTemplateBaseVO {
|
public class DeliveryExpressTemplateRespVO extends DeliveryExpressTemplateBaseVO {
|
||||||
|
|
||||||
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "371")
|
@Schema(description = "编号,自增", required = true, example = "371")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
@Schema(description = "运费模板运费设置", requiredMode = Schema.RequiredMode.REQUIRED)
|
@Schema(description = "创建时间", required = true)
|
||||||
private List<ExpressTemplateChargeBaseVO> templateCharge;
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
@Schema(description = "运费模板包邮区域", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
||||||
private List<ExpressTemplateFreeBaseVO> templateFree;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue