阶段重量、阶梯价格保存

This commit is contained in:
dimengzhe
2024-01-28 17:04:50 +08:00
parent 658776fe1a
commit 20acf6a96e
2 changed files with 12 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
package com.yxt.yythmall.api.lpkgoods;
import com.yxt.common.core.vo.Vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@@ -32,4 +33,9 @@ public class LpkGoodsDetailsVo implements Vo {
private String brandName; // 品牌名称';
private Long categoryId; // 类别ID';
private String categoryName; // 类别名称';
@ApiModelProperty("阶梯重量")
private String stepWeight;
@ApiModelProperty("阶梯价格")
private String stepPrice;
}

View File

@@ -2,6 +2,7 @@ package com.yxt.yythmall.api.lpkgoods;
import com.yxt.common.core.dto.Dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@@ -31,4 +32,9 @@ public class LpkGoodsDto implements Dto {
private String brandName; // 品牌名称';
private Long categoryId; // 类别ID';
private String categoryName; // 类别名称';
@ApiModelProperty("阶梯重量")
private String stepWeight;
@ApiModelProperty("阶梯价格")
private String stepPrice;
}