Commit 59ae938efb6af265b8cd38fda907652e5bd354b2
1 parent
24249d24
update...
Showing
1 changed file
with
11 additions
and
0 deletions
src/main/java/com/bsth/entity/realcontrol/ScheduleRealInfo.java
| ... | ... | @@ -181,6 +181,9 @@ public class ScheduleRealInfo { |
| 181 | 181 | //是否有GPS信号 |
| 182 | 182 | private boolean online; |
| 183 | 183 | |
| 184 | + /** 是否有补发GPS信号 */ | |
| 185 | + private boolean reissue; | |
| 186 | + | |
| 184 | 187 | public boolean isDfAuto() { |
| 185 | 188 | return dfAuto; |
| 186 | 189 | } |
| ... | ... | @@ -819,4 +822,12 @@ public class ScheduleRealInfo { |
| 819 | 822 | public void setAdjustExps(String adjustExps) { |
| 820 | 823 | this.adjustExps = adjustExps; |
| 821 | 824 | } |
| 825 | + | |
| 826 | + public boolean isReissue() { | |
| 827 | + return reissue; | |
| 828 | + } | |
| 829 | + | |
| 830 | + public void setReissue(boolean reissue) { | |
| 831 | + this.reissue = reissue; | |
| 832 | + } | |
| 822 | 833 | } | ... | ... |