Blame view

zteits-job/src/main/java/com/zteits/job/domain/ParkFreeBerth.java 2.92 KB
3a404b2a   zhaowg   空闲车位获取和推送
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
  package com.zteits.job.domain;
  
  import java.util.Date;
  
  public class ParkFreeBerth {
      private Long id;
  
      /**所属停车场*/
      private Long plId;
  
      /**所属停车场名称*/
      private String plName;
  
      /**所属停车场编码*/
      private String plNo;
  
      /**空闲车位数*/
      private Integer freeBerth;
  
      /**真实的空闲车位数*/
      private Integer realFreeBerth;
  
      /**数据状态:0-失效,1-生效*/
      private Integer dataStatus;
  
      /**更新时间*/
      private Date modifyTime;
  
      /**1:真实停车场,在parking_lot中;2:虚拟停车场,关联tb_g_guide_park_berths,例:水岸天街停车场,虚拟出水岸天街东,水岸天街西*/
      private String type;
  
      public Long getId() {
          return id;
      }
  
      public void setId(Long id) {
          this.id = id;
      }
  
      /**获取所属停车场*/
      public Long getPlId() {
          return plId;
      }
  
      /**设置所属停车场*/
      public void setPlId(Long plId) {
          this.plId = plId;
      }
  
      /**获取所属停车场名称*/
      public String getPlName() {
          return plName;
      }
  
      /**设置所属停车场名称*/
      public void setPlName(String plName) {
          this.plName = plName == null ? null : plName.trim();
      }
  
      /**获取所属停车场编码*/
      public String getPlNo() {
          return plNo;
      }
  
      /**设置所属停车场编码*/
      public void setPlNo(String plNo) {
          this.plNo = plNo == null ? null : plNo.trim();
      }
  
      /**获取空闲车位数*/
      public Integer getFreeBerth() {
          return freeBerth;
      }
  
      /**设置空闲车位数*/
      public void setFreeBerth(Integer freeBerth) {
          this.freeBerth = freeBerth;
      }
  
      /**获取真实的空闲车位数*/
      public Integer getRealFreeBerth() {
          return realFreeBerth;
      }
  
      /**设置真实的空闲车位数*/
      public void setRealFreeBerth(Integer realFreeBerth) {
          this.realFreeBerth = realFreeBerth;
      }
  
      /**获取数据状态:0-失效,1-生效*/
      public Integer getDataStatus() {
          return dataStatus;
      }
  
      /**设置数据状态:0-失效,1-生效*/
      public void setDataStatus(Integer dataStatus) {
          this.dataStatus = dataStatus;
      }
  
      /**获取更新时间*/
      public Date getModifyTime() {
          return modifyTime;
      }
  
      /**设置更新时间*/
      public void setModifyTime(Date modifyTime) {
          this.modifyTime = modifyTime;
      }
  
      /**获取1:真实停车场,在parking_lot中;2:虚拟停车场,关联tb_g_guide_park_berths,例:水岸天街停车场,虚拟出水岸天街东,水岸天街西*/
      public String getType() {
          return type;
      }
  
      /**设置1:真实停车场,在parking_lot中;2:虚拟停车场,关联tb_g_guide_park_berths,例:水岸天街停车场,虚拟出水岸天街东,水岸天街西*/
      public void setType(String type) {
          this.type = type == null ? null : type.trim();
      }
  }