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