适配交流桩
This commit is contained in:
parent
4db9f3ed77
commit
ccbfc19582
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user