|
|
@@ -24,6 +24,9 @@ import com.ruoyi.framework.web.page.PageDomain;
|
|
|
import com.ruoyi.framework.web.page.TableDataInfo;
|
|
|
import com.ruoyi.framework.web.page.TableSupport;
|
|
|
import com.ruoyi.project.approve.damain.DevTask;
|
|
|
+import com.ruoyi.project.eoeg.domain.TEoegStaffmgr;
|
|
|
+import com.ruoyi.project.eoeg.mapper.TEoegStaffmgrMapper;
|
|
|
+import com.ruoyi.project.eoeg.service.ITEoegStaffmgrService;
|
|
|
import com.ruoyi.project.plant.domain.TStaffmgr;
|
|
|
import com.ruoyi.project.plant.mapper.TStaffmgrMapper;
|
|
|
import com.ruoyi.project.plant.service.ITStaffmgrService;
|
|
|
@@ -104,10 +107,10 @@ public class TEoegSaiApplyController extends BaseController
|
|
|
private ITEoegSaiApproveFileService saiApproveFileService;
|
|
|
|
|
|
@Autowired
|
|
|
- private ITStaffmgrService staffmgrService;
|
|
|
+ private ITEoegStaffmgrService staffmgrService;
|
|
|
|
|
|
@Autowired
|
|
|
- private TStaffmgrMapper staffmgrMapper;
|
|
|
+ private TEoegStaffmgrMapper staffmgrMapper;
|
|
|
|
|
|
@Autowired
|
|
|
private ISysMessageService sysMessageService;
|
|
|
@@ -451,9 +454,9 @@ public class TEoegSaiApplyController extends BaseController
|
|
|
date.setDate(date.getDate() + 7);
|
|
|
tSaiApply.setEstimateFinishDate(date);
|
|
|
// 查询四个班长
|
|
|
- List<TStaffmgr> tStaffmgrs = staffmgrMapper.selectSaiAssessor();
|
|
|
+ List<TEoegStaffmgr> tStaffmgrs = staffmgrMapper.selectSaiAssessor();
|
|
|
List<String> monitorList = new ArrayList<>();
|
|
|
- for (TStaffmgr tStaffmgr : tStaffmgrs) {
|
|
|
+ for (TEoegStaffmgr tStaffmgr : tStaffmgrs) {
|
|
|
String userId1 = tStaffmgr.getUserId();
|
|
|
monitorList.add(userId1);
|
|
|
}
|
|
|
@@ -604,7 +607,7 @@ public class TEoegSaiApplyController extends BaseController
|
|
|
SysUser sysUser = userService.selectUserById(Long.parseLong(split[i]));
|
|
|
String staffId = sysUser.getStaffId();
|
|
|
String loginName = sysUser.getUserName();
|
|
|
- TStaffmgr staffmgr = staffmgrService.selectTStaffmgrByStaffId(staffId);
|
|
|
+ TEoegStaffmgr staffmgr = staffmgrService.selectTStaffmgrByStaffId(staffId);
|
|
|
String staffName = staffmgr.getName();
|
|
|
String email = sysUser.getEmail();
|
|
|
if (email != null) {
|