Commit f0c9e7ec004e460235d287a92ef4c310607b8b63
1 parent
35288e86
update...
Showing
1 changed file
with
10 additions
and
0 deletions
src/main/java/com/bsth/server_rs/schedule/dto/ScheduleInOut.java
| ... | ... | @@ -55,6 +55,7 @@ public class ScheduleInOut implements Serializable { |
| 55 | 55 | this.zdsjActualTime = sch.getZdsjActualTime(); |
| 56 | 56 | this.sflj = sch.isSflj(); |
| 57 | 57 | this.remarks = sch.getRemarks(); |
| 58 | + this.status = sch.getStatus(); | |
| 58 | 59 | } |
| 59 | 60 | |
| 60 | 61 | private Long id; |
| ... | ... | @@ -76,6 +77,7 @@ public class ScheduleInOut implements Serializable { |
| 76 | 77 | private Long zdsjActualTime; |
| 77 | 78 | private boolean sflj; |
| 78 | 79 | private String remarks; |
| 80 | + private int status; | |
| 79 | 81 | |
| 80 | 82 | public Long getId() { |
| 81 | 83 | return id; |
| ... | ... | @@ -228,4 +230,12 @@ public class ScheduleInOut implements Serializable { |
| 228 | 230 | public void setRemarks(String remarks) { |
| 229 | 231 | this.remarks = remarks; |
| 230 | 232 | } |
| 233 | + | |
| 234 | + public int getStatus() { | |
| 235 | + return status; | |
| 236 | + } | |
| 237 | + | |
| 238 | + public void setStatus(int status) { | |
| 239 | + this.status = status; | |
| 240 | + } | |
| 231 | 241 | } | ... | ... |