适配交流桩

This commit is contained in:
ZZ 2021-09-18 10:10:59 +08:00
parent 4db9f3ed77
commit ccbfc19582

View File

@ -352,7 +352,7 @@ public class CacheOrderData extends BaseData {
public Integer getStartSoc() {
return startSoc;
return startSoc == null ? 0 : startSoc;
}
public void setStartSoc(Integer startSoc) {
@ -362,7 +362,7 @@ public class CacheOrderData extends BaseData {
public Integer getEndSoc() {
return endSoc;
return endSoc == null ? 0 : endSoc;
}
public void setEndSoc(Integer endSoc) {