|
|
|
|
@ -56,6 +56,8 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO {
|
|
|
|
|
private String returnCode;
|
|
|
|
|
private String returnMsg;
|
|
|
|
|
|
|
|
|
|
private Bu18WebPreNoticeDTO prenotice;
|
|
|
|
|
|
|
|
|
|
public Bu18WebReturnInfoDTO() {}
|
|
|
|
|
|
|
|
|
|
public Bu18WebReturnInfoDTO(
|
|
|
|
|
@ -431,6 +433,15 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO {
|
|
|
|
|
return getters;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Bu18WebPreNoticeDTO getPrenotice() {
|
|
|
|
|
return prenotice;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Bu18WebReturnInfoDTO setPrenotice(Bu18WebPreNoticeDTO prenotice) {
|
|
|
|
|
this.prenotice = prenotice;
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isSuccess() {
|
|
|
|
|
return "0".equals(returnCode);
|
|
|
|
|
}
|
|
|
|
|
|