Commit 667acf8c by 王力

Merge branch 'feature_mvp616_wangl' into 'develop'

Feature mvp616 wangl

See merge request !83
2 parents 65df15f3 572d8012
......@@ -7,7 +7,7 @@ import java.sql.Timestamp;
@Data
public class CapacityEngineerStat {
private long id;
private String workDay;
private String workday;
private String engineerCode;
private Integer capTotal;
private Integer capUsed;
......
......@@ -266,7 +266,7 @@ public class DispatchServiceImpl implements DispatchService {
private HashMap<String, CapacityEngineerStat> queryCapacityEngineerStat(List<String> engineerCodes, String date) {
LambdaQueryWrapper<CapacityEngineerStat> lqw = new LambdaQueryWrapper<>();
lqw.eq(CapacityEngineerStat::getWorkDay, date);
lqw.eq(CapacityEngineerStat::getWorkday, date);
lqw.in(CapacityEngineerStat::getEngineerCode, engineerCodes);
List<CapacityEngineerStat> records = capacityEngineerStatMPDao.selectList(lqw);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!