Commit b08c0e1f by huangjinxin

fix:甘特图返回工程师手机号

1 parent e282a8a6
......@@ -51,6 +51,7 @@ public class EngineersGanttDTO {
* 工程师工号
*/
private String engineerCode;
private String engineerPhone;
private String engineerName;
private String capTotal;
private String capUsed;
......
......@@ -131,6 +131,7 @@ public class EngineerGanttServiceImpl implements EngineerGanttService {
engineer.setEngineerCode(engineerCode)
.setHoliday(false) // todo
.setEngineerName(engineerInfo.getName())
.setEngineerPhone(engineerInfo.getPhone())
.setGrade(engineerInfo.getGrade());
EngineerBusinessEntity engineerBusinessEntity = engineerBusinessDao.getByEngineerCode(engineerCode);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!