mac
2023-11-22 3f41182984d69d7fae703776edd1591f48dff93f
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
package com.hdl.linkpm.sdk.ota.bean;
 
import java.io.Serializable;
 
public class PassDataBean implements Serializable {
 
   /**
    * Device_ID : 1
    * DeviceAddr : 60a423fffe93cf89
    * Epoint : 200
    * Data_ID : 64513
    * Data : {"PassData":"07020000030b1621"}
    */
 
   private int Device_ID;
   private String DeviceAddr;
   private int Epoint;
   private int Data_ID;
   private DataBean Data;
 
   public int getDevice_ID() {
      return Device_ID;
   }
 
   public void setDevice_ID(int Device_ID) {
      this.Device_ID = Device_ID;
   }
 
   public String getDeviceAddr() {
      return DeviceAddr;
   }
 
   public void setDeviceAddr(String DeviceAddr) {
      this.DeviceAddr = DeviceAddr;
   }
 
   public int getEpoint() {
      return Epoint;
   }
 
   public void setEpoint(int Epoint) {
      this.Epoint = Epoint;
   }
 
   public int getData_ID() {
      return Data_ID;
   }
 
   public void setData_ID(int Data_ID) {
      this.Data_ID = Data_ID;
   }
 
   public DataBean getData() {
      return Data;
   }
 
   public void setData(DataBean Data) {
      this.Data = Data;
   }
 
   public static class DataBean implements Serializable {
      /**
       * PassData : 07020000030b1621
       */
 
      private String PassData;
 
      public String getPassData() {
         return PassData;
      }
 
      public void setPassData(String PassData) {
         this.PassData = PassData;
      }
   }
}