parent
8c12a6d167
commit
13d5a9b813
@ -0,0 +1,88 @@
|
||||
package com.rehome.dywoa.bean;
|
||||
|
||||
public class FaceRecognitionResult {
|
||||
private int state;
|
||||
private String msg;
|
||||
private Data data;
|
||||
|
||||
public int getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(int state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public Data getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(Data data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class Data {
|
||||
private String name;
|
||||
private String id_card;
|
||||
private String gh;
|
||||
private String phone;
|
||||
private String sex;
|
||||
private String faceType;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getGh() {
|
||||
return gh;
|
||||
}
|
||||
|
||||
public void setGh(String gh) {
|
||||
this.gh = gh;
|
||||
}
|
||||
|
||||
public String getId_card() {
|
||||
return id_card;
|
||||
}
|
||||
|
||||
public void setId_card(String id_card) {
|
||||
this.id_card = id_card;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getSex() {
|
||||
return sex;
|
||||
}
|
||||
|
||||
public void setSex(String sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getFaceType() {
|
||||
return faceType;
|
||||
}
|
||||
|
||||
public void setFaceType(String faceType) {
|
||||
this.faceType = faceType;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:id="@+id/lay_dialog_bottom_view"
|
||||
android:background="@drawable/radius"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp"
|
||||
android:text="提示"
|
||||
android:textColor="#000"
|
||||
android:textSize="20sp"
|
||||
android:textStyle="bold" />
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:background="@color/gray" />
|
||||
<ImageView
|
||||
android:id="@+id/iv_photo"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_width="180dp"
|
||||
android:layout_height="200dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
tools:layout_editor_absoluteX="85dp"
|
||||
tools:layout_editor_absoluteY="70dp"
|
||||
tools:srcCompat="@tools:sample/avatars" />
|
||||
|
||||
<TextView
|
||||
android:layout_marginTop="10dp"
|
||||
android:id="@+id/tv_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="姓名:"
|
||||
android:textColor="#000000"
|
||||
android:textSize="30px"
|
||||
android:textStyle="bold" />
|
||||
<TextView
|
||||
android:id="@+id/tv_gh"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="工号:"
|
||||
android:textColor="#000000"
|
||||
android:textSize="30px"
|
||||
android:textStyle="bold" />
|
||||
<TextView
|
||||
android:id="@+id/tv_face_type"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="人员类型:"
|
||||
android:textColor="#000"
|
||||
android:textSize="30px"
|
||||
android:textStyle="bold" />
|
||||
<TextView
|
||||
android:id="@+id/tv_msg"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="20dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="错误提示:"
|
||||
android:textColor="#000"
|
||||
android:textSize="30px"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<include
|
||||
android:id="@+id/bottom_btn_view"
|
||||
layout="@layout/layout_ba_check_dialog_bottom" />
|
||||
|
||||
</LinearLayout>
|
||||
Loading…
Reference in New Issue