From 6fc8cfbd4b92b66df7bde1966b5ab3d3b56705b2 Mon Sep 17 00:00:00 2001 From: xuxiuxi <xuxiuxi@454eff88-639b-444f-9e54-f578c98de674> Date: 星期一, 27 三月 2017 12:58:00 +0800 Subject: [PATCH] --- VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/FacePhotoItem.java | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/FacePhotoItem.java b/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/FacePhotoItem.java new file mode 100644 index 0000000..3607f14 --- /dev/null +++ b/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/FacePhotoItem.java @@ -0,0 +1,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; + } + +} -- Gitblit v1.8.0