| | |
| | | public Integer getStartSta$(){ |
| | | if (this.startSta != null){ |
| | | try{ |
| | | return Integer.parseInt(this.startSta); |
| | | if (STA_ALL.contains(Integer.parseInt(this.startSta))) { |
| | | return Integer.parseInt(this.startSta); |
| | | } else { |
| | | return 0; |
| | | } |
| | | } catch (Exception e){ |
| | | return 0; |
| | | } |
| | |
| | | public Integer getEndSta$(){ |
| | | if (this.endSta != null){ |
| | | try{ |
| | | return Integer.parseInt(this.endSta); |
| | | if (STA_ALL.contains(Integer.parseInt(this.endSta))) { |
| | | return Integer.parseInt(this.endSta); |
| | | } else { |
| | | return 0; |
| | | } |
| | | } catch (Exception e){ |
| | | return 0; |
| | | } |