IdentificationInfo.java
1.22 KB
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
/*
* Copyright (c) 2018, ZheJiang Uniview Technologies Co., Ltd. All rights reserved.
* <http://www.uniview.com/>
*------------------------------------------------------------------------------
* Product : 速通门
* Module Name : com.unv.fastgate.server.service
* Date Created: 2019/5/13
* Creator : dW5565 dongchenghao
* Description :
*
*------------------------------------------------------------------------------
* Modification History
* DATE NAME DESCRIPTION
*------------------------------------------------------------------------------
*------------------------------------------------------------------------------
*/
package com.sincere.lapi.pojo;
import com.alibaba.fastjson.annotation.JSONField;
/**
* description
*
* @author dW5565
*/
public class IdentificationInfo {
@JSONField(name = "Type", ordinal = 1)
private Integer type;
@JSONField(name = "Number", ordinal = 2)
private String number;
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
}