this is 4.2 update
This commit is contained in:
parent
c8d30330f6
commit
50897cd4f1
|
@ -201,6 +201,7 @@ public class GoodController {
|
|||
good.setType("服务类");
|
||||
good.setIsGoodType(0);
|
||||
good.setInventory(1);
|
||||
good.setLabel("无");
|
||||
good.setFestivalName("无");
|
||||
// 校验
|
||||
goodService.validGood(good, false);
|
||||
|
@ -791,6 +792,7 @@ public class GoodController {
|
|||
good.setType("服务类");
|
||||
good.setIsGoodType(0);
|
||||
good.setInventory(1);
|
||||
good.setLabel("无");
|
||||
good.setFestivalName("无");
|
||||
// 校验
|
||||
goodService.validGood(good, true);
|
||||
|
|
|
@ -10,7 +10,7 @@ import java.math.BigDecimal;
|
|||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@Schema(description = "服务类商品添加请求体", requiredProperties = {"name", "price", "goodImg", "intro", "richText", "label", "appointmentDateAddRequestList"})
|
||||
@Schema(description = "服务类商品添加请求体", requiredProperties = {"name", "price", "goodImg", "intro", "richText", "appointmentDateAddRequestList"})
|
||||
public class ServiceGoodAddRequest implements Serializable {
|
||||
|
||||
/**
|
||||
|
@ -45,13 +45,6 @@ public class ServiceGoodAddRequest implements Serializable {
|
|||
private String richText;
|
||||
|
||||
|
||||
/**
|
||||
* 商品标签
|
||||
*/
|
||||
@Schema(description = "商品标签", example = "亲情;送礼;材料包")
|
||||
private String label;
|
||||
|
||||
|
||||
/**
|
||||
* 未来的预约详情
|
||||
*/
|
||||
|
|
|
@ -10,7 +10,7 @@ import java.math.BigDecimal;
|
|||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@Schema(description = "服务类商品更新请求体", requiredProperties = {"id", "name", "price", "goodImg", "intro", "label", "richText", "appointmentDateUpdateRequestList"})
|
||||
@Schema(description = "服务类商品更新请求体", requiredProperties = {"id", "name", "price", "goodImg", "intro", "richText", "appointmentDateUpdateRequestList"})
|
||||
public class ServiceGoodUpdateRequest implements Serializable {
|
||||
|
||||
/**
|
||||
|
@ -49,12 +49,6 @@ public class ServiceGoodUpdateRequest implements Serializable {
|
|||
@Schema(description = "商品详情(富文本)", example = "<p></p>")
|
||||
private String richText;
|
||||
|
||||
/**
|
||||
* 商品标签
|
||||
*/
|
||||
@Schema(description = "商品标签", example = "亲情;送礼;材料包")
|
||||
private String label;
|
||||
|
||||
|
||||
/**
|
||||
* 未来几天的预约时间表
|
||||
|
|
|
@ -102,4 +102,5 @@ wx:
|
|||
|
||||
|
||||
knife4j:
|
||||
enable: false
|
||||
enable: true
|
||||
production: true
|
|
@ -1,6 +1,6 @@
|
|||
spring:
|
||||
profiles:
|
||||
active: dev
|
||||
active: prod
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user