refactor(product): 移除产品模型中的分组名称字段
- 从 ProductModelController 中注释掉 groupName 的设置 - 从 ProductModelMainParamsItemChildrenVO 中注释掉 groupName 字段定义 - 移除相关的注释文档 - 简化了产品模型的数据结构
This commit is contained in:
parent
4114494056
commit
32817124d7
|
|
@ -317,7 +317,7 @@ public class ProductModelController extends ControllerBase {
|
|||
.setIndexName(indexName)
|
||||
.setBatchNumber(String.valueOf(parent.getId()))
|
||||
.setType(parent.getType())
|
||||
.setGroupName(parent.getGroupName())
|
||||
// .setGroupName(parent.getGroupName())
|
||||
.setShippingDimensions(parent.getShippingDimensions())
|
||||
.setWeight(parent.getWeight())
|
||||
.setImageUrl(parent.getImageUrl())
|
||||
|
|
|
|||
|
|
@ -27,17 +27,15 @@ public class ProductModelMainParamsItemChildrenVO {
|
|||
*/
|
||||
private Integer type;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
private String imageUrl;
|
||||
|
||||
/**
|
||||
* 分组名称,同组的可选配置替换
|
||||
*/
|
||||
private String groupName;
|
||||
// /**
|
||||
// * 分组名称,同组的可选配置替换
|
||||
// */
|
||||
// private String groupName;
|
||||
|
||||
/**
|
||||
* 运输尺寸
|
||||
|
|
|
|||
Loading…
Reference in New Issue