|
@@ -90,7 +90,7 @@ public class BsUserGoodsCollectionServiceImpl extends ServiceImpl<BsUserGoodsCol
|
|
|
LambdaQueryWrapper<BsUserGoodsCollection> lqw = Wrappers.lambdaQuery();
|
|
|
lqw.eq(bo.getGoodsId() != null, BsUserGoodsCollection::getGoodsId, bo.getGoodsId());
|
|
|
lqw.eq(bo.getGoodsType() != null, BsUserGoodsCollection::getGoodsType, bo.getGoodsType());
|
|
|
- lqw.eq(bo.getEducationType() != null, BsUserGoodsCollection::getEducationType, bo.getEducationType());
|
|
|
+ lqw.eq(bo.getEducationTypeId() != null, BsUserGoodsCollection::getEducationTypeId, bo.getEducationTypeId());
|
|
|
lqw.eq(bo.getEducationName() != null, BsUserGoodsCollection::getEducationName, bo.getEducationName());
|
|
|
lqw.eq(bo.getProjectId() != null, BsUserGoodsCollection::getProjectId, bo.getProjectId());
|
|
|
lqw.eq(bo.getProjectName() != null, BsUserGoodsCollection::getProjectName, bo.getProjectName());
|
|
@@ -217,7 +217,7 @@ public class BsUserGoodsCollectionServiceImpl extends ServiceImpl<BsUserGoodsCol
|
|
|
OrderBusinessConfigVo detail = iOrderBusinessConfigService.getDetail(orderBusinessConfigQueryBo);
|
|
|
add.setGoodsType(10L);
|
|
|
add.setGoodsName(detail.getConfigName());
|
|
|
- add.setEducationType(detail.getEducationType());
|
|
|
+ add.setEducationTypeId(detail.getEducationType());
|
|
|
add.setEducationName(detail.getEducationName());
|
|
|
add.setProjectId(detail.getProjectId());
|
|
|
add.setProjectName(detail.getBusinessName()+detail.getProjectName());
|
|
@@ -240,7 +240,7 @@ public class BsUserGoodsCollectionServiceImpl extends ServiceImpl<BsUserGoodsCol
|
|
|
CompanyGoodsVo goods = list.get(0);
|
|
|
add.setGoodsType(goods.getGoodsType().longValue());
|
|
|
add.setGoodsName(goods.getGoodsName());
|
|
|
- add.setEducationType(goods.getEducationTypeId());
|
|
|
+ add.setEducationTypeId(goods.getEducationTypeId());
|
|
|
add.setEducationName(goods.getEducationName());
|
|
|
add.setProjectId(goods.getProjectId());
|
|
|
add.setProjectName(goods.getBusinessName()+goods.getProjectName());
|