|
|
|
@ -98,6 +98,17 @@ public class StatQuery extends CmmnQuery {
|
|
|
|
|
*/
|
|
|
|
|
private String carGb;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 서손자료 제외
|
|
|
|
|
*/
|
|
|
|
|
private String schExclEnd;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 렌트카 차량만 조회
|
|
|
|
|
*/
|
|
|
|
|
private String schOnlyRent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getStructureType() {
|
|
|
|
|
return ifEmpty(structureType, () -> null);
|
|
|
|
|
}
|
|
|
|
@ -243,4 +254,22 @@ public class StatQuery extends CmmnQuery {
|
|
|
|
|
return self();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSchExclEnd() {
|
|
|
|
|
return ifEmpty(schExclEnd, () -> null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public <T extends StatQuery> T setSchExclEnd(String schExclEnd) {
|
|
|
|
|
this.schExclEnd = schExclEnd;
|
|
|
|
|
return self();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSchOnlyRent() {
|
|
|
|
|
return ifEmpty(schOnlyRent, () -> null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public <T extends StatQuery> T setSchOnlyRent(String schOnlyRent) {
|
|
|
|
|
this.schOnlyRent = schOnlyRent;
|
|
|
|
|
return self();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|