Commit 8faab715 by zhangxingmin

push

parent c2e248b5
......@@ -94,6 +94,8 @@ public class ApiSpeciesSettingServiceImpl implements ApiSpeciesSettingService {
typeDto.setSpeciesTypeBizId(firstSetting.getSpeciesTypeBizId());
typeDto.setTypeCode(firstSetting.getTypeCode());
typeDto.setTypeName(firstSetting.getTypeName());
typeDto.setIsCustomize(firstSetting.getIsCustomize());
typeDto.setIsIllustration(firstSetting.getIsIllustration());
// 转换该类型下的所有规格配置
List<ApiSpeciesSettingDto> speciesSettingDtos = settingsInType.stream().map(setting -> {
......
......@@ -23,6 +23,16 @@ public class ApiSpeciesTypeDto {
private String typeName;
/**
* 是否配图 0-否 1-是
*/
private String isIllustration;
/**
* 是否自定义 0-否 1-是
*/
private String isCustomize;
/**
* 上架产品规格配置列表
*/
private List<ApiSpeciesSettingDto> apiSpeciesSettingDtoList;
......
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