|
@@ -1,5 +1,6 @@
|
|
|
package com.management.platform.service.impl;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
|
|
import com.management.platform.entity.BusinessOpportunity;
|
|
|
import com.management.platform.entity.User;
|
|
|
import com.management.platform.mapper.BusinessOpportunityMapper;
|
|
@@ -59,4 +60,11 @@ public class BusinessOpportunityServiceImpl extends ServiceImpl<BusinessOpportun
|
|
|
bo.setCreateTime(new Date());
|
|
|
bOMapper.insert(bo);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void update(BusinessOpportunity bo) {
|
|
|
+ UpdateWrapper<Object> update = new UpdateWrapper<>();
|
|
|
+
|
|
|
+// bOMapper.update(bo);
|
|
|
+ }
|
|
|
}
|