LockFeedBack.java
935 字节
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
package com.sy.model;
/**
* 关锁回调接口实体
* @author mrz
*/
public class LockFeedBack {
/**
* 二维码
*/
public String barcode;
/**
* 施解封状态
*/
public String feedbackcode;
/**
* 施解封描述
*/
public String feedbackconten;
/**
* 关锁秘钥
*/
public String secret;
/**
* 施解封时间
*/
public String locktime;
/**
* 施解封类型 ,1 施封 2 解封
*/
public String type;
@Override
public String toString() {
return "LockFeedBack{" +
"barcode='" + barcode + '\'' +
", feedbackcode='" + feedbackcode + '\'' +
", feedbackconten='" + feedbackconten + '\'' +
", secret='" + secret + '\'' +
", locktime='" + locktime + '\'' +
", type='" + type + '\'' +
'}';
}
}