xuxiuxi
2017-04-10 0235abfeeba62dd5b901cd54be9ed64e0b010de0
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
package cn.com.basic.face.discern.query.item;
 
import android.graphics.Bitmap;
 
public class FacePhotoItem {
    private Bitmap photo;
    private String warning;
    private String name;
    private String status;
    private int type;
 
    public static final int REGISTER = 0;
 
 
    public FacePhotoItem() { }
 
    public FacePhotoItem(Bitmap photo, String warning, String name, String status) {
        this.photo = photo;
        this.warning = warning;
        this.name = name;
        this.status = status;
    }
 
    public void setPhoto(Bitmap photo) {
        this.photo = photo;
    }
 
    public void setWarning(String warning) {
        this.warning = warning;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public Bitmap getPhoto() {
        return photo;
    }
 
    public String getWarning() {
        return warning;
    }
 
    public String getName() {
        return name;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public int getType() {
        return type;
    }
 
}