|
@@ -5,10 +5,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gree.mall.manager.bean.activity.PromotionActivityBatchBean;
|
|
|
import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
|
-import com.gree.mall.manager.bean.apply.WorkerInvolveApplyDetail;
|
|
|
-import com.gree.mall.manager.bean.apply.WorkerInvolveApplyVO;
|
|
|
-import com.gree.mall.manager.bean.apply.WorkerInvolvePrincipalDetail;
|
|
|
-import com.gree.mall.manager.bean.apply.WorkerInvolvePrincipalVO;
|
|
|
+import com.gree.mall.manager.bean.apply.*;
|
|
|
import com.gree.mall.manager.bean.es.ESGoodsVO;
|
|
|
import com.gree.mall.manager.commonmapper.CommonMapper;
|
|
|
import com.gree.mall.manager.exception.RemoteServiceException;
|
|
@@ -127,15 +124,13 @@ public class WorkerInvolveLogic {
|
|
|
return workerInvolveApplyDetail;
|
|
|
}
|
|
|
|
|
|
- public void websitAppeal(WorkerInvolveApplyItem workerInvolveApplyItem) {
|
|
|
+ public void websitAppeal(WorkerInvolveApplyBean workerInvolveApplyBean) {
|
|
|
|
|
|
- WorkerInvolveApply workerInvolveApply = workerInvolveApplyService.getById(workerInvolveApplyItem.getInvolveApplyId());
|
|
|
-
|
|
|
- workerInvolveApply.setStatus(workerInvolveApplyItem.getWebsitStatus());
|
|
|
+ workerInvolveApplyBean.setStatus(workerInvolveApplyBean.getWorkerInvolveApplyItem().getWebsitStatus());
|
|
|
|
|
|
- workerInvolveApply.updateById();
|
|
|
+ workerInvolveApplyBean.updateById();
|
|
|
|
|
|
- workerInvolveApplyItem.insert();
|
|
|
+ workerInvolveApplyBean.getWorkerInvolveApplyItem().insert();
|
|
|
}
|
|
|
|
|
|
public void appeal(WorkerInvolveApplyItem workerInvolveApplyItem) {
|