Compare commits

..

No commits in common. "4e02f7e03a5b23a071dfcbf50602df36920c2856" and "d62c7bf447728f094e1f95cc0e92d27eb0369676" have entirely different histories.

3 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
</select>
<select id="getIdAndPidList" resultType="com.cnbm.admin.entity.SysDeptEntity">
select t1.id, t1.pid from sys_dept t1 where t1.valid = 1
select t1.id, t1.pid from sys_dept t1 AND t1.valid = 1
</select>
<select id="getSubDeptIdList" resultType="long">

View File

@ -205,7 +205,7 @@ public class KukaJoinThread implements ApplicationRunner {
@Override
public void run(ApplicationArguments args) throws Exception {
//
// kukaStep1.scheduleAtFixedRate(new Runnable() {
// @Override
// public void run() {

View File

@ -15,6 +15,8 @@ public class PowerReportVo {
private Float totalLevelPower; //档位功率汇总
private Float totalCompensatePower; //补偿功率汇总
private Float diversePower; //差异功率汇总
private List<PowerReportDTO> powerReports;
}