New file |
| | |
| | | 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; |
| | | } |
| | | } |
| | | } |