|
|
@ -12,6 +12,8 @@ import org.jeecg.modules.zyclothsstyle.mapper.ZyClothsStyleMapper; |
|
|
|
import org.jeecg.modules.zyclothsstyle.service.IZyClothsStyleService; |
|
|
|
import org.jeecg.modules.zyclothsstyle.service.IZyClothsStyleService; |
|
|
|
import org.jeecg.modules.zystylefabric.entity.NewZyStyleFabric; |
|
|
|
import org.jeecg.modules.zystylefabric.entity.NewZyStyleFabric; |
|
|
|
import org.jeecg.modules.zystylefabric.service.IZyStyleFabricService; |
|
|
|
import org.jeecg.modules.zystylefabric.service.IZyStyleFabricService; |
|
|
|
|
|
|
|
import org.jeecg.modules.zystylemodel.entity.ZyStyleModel; |
|
|
|
|
|
|
|
import org.jeecg.modules.zystylemodel.service.IZyStyleModelService; |
|
|
|
import org.jeecg.modules.zystylemodule.entity.NewStyleModule; |
|
|
|
import org.jeecg.modules.zystylemodule.entity.NewStyleModule; |
|
|
|
import org.jeecg.modules.zystylemodule.service.IZyStyleModuleService; |
|
|
|
import org.jeecg.modules.zystylemodule.service.IZyStyleModuleService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -40,6 +42,8 @@ public class ZyClothsStyleServiceImpl extends ServiceImpl<ZyClothsStyleMapper, Z |
|
|
|
private IZyStyleModularService zyStyleModularService; |
|
|
|
private IZyStyleModularService zyStyleModularService; |
|
|
|
@Autowired |
|
|
|
@Autowired |
|
|
|
private IZyStyleAccessoriesService zyStyleAccessoriesService; |
|
|
|
private IZyStyleAccessoriesService zyStyleAccessoriesService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
|
|
private IZyStyleModelService zyStyleModelService; |
|
|
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
@Resource |
|
|
|
private ZyClothsStyleMapper zyClothsStyleMapper; |
|
|
|
private ZyClothsStyleMapper zyClothsStyleMapper; |
|
|
@ -64,7 +68,9 @@ public class ZyClothsStyleServiceImpl extends ServiceImpl<ZyClothsStyleMapper, Z |
|
|
|
//服装 辅料详情
|
|
|
|
//服装 辅料详情
|
|
|
|
List<ZyStyleAccessories> zyStyleAccessoriesList = zyStyleAccessoriesService.detail(id); |
|
|
|
List<ZyStyleAccessories> zyStyleAccessoriesList = zyStyleAccessoriesService.detail(id); |
|
|
|
zyAllClothStyle.setZyStyleAccessoriesList(zyStyleAccessoriesList); |
|
|
|
zyAllClothStyle.setZyStyleAccessoriesList(zyStyleAccessoriesList); |
|
|
|
|
|
|
|
//服装 款式型号
|
|
|
|
|
|
|
|
List<ZyStyleModel> zyStyleModels = zyStyleModelService.detail(id); |
|
|
|
|
|
|
|
zyAllClothStyle.setZyStyleModels(zyStyleModels); |
|
|
|
//服装 工序详情
|
|
|
|
//服装 工序详情
|
|
|
|
List<ZyStyleModular> zyStyleModularList = zyStyleModularService.detail(id); |
|
|
|
List<ZyStyleModular> zyStyleModularList = zyStyleModularService.detail(id); |
|
|
|
zyAllClothStyle.setZyStyleModularList(zyStyleModularList); |
|
|
|
zyAllClothStyle.setZyStyleModularList(zyStyleModularList); |
|
|
|