119 lines
2.1 KiB
Plaintext
119 lines
2.1 KiB
Plaintext
|
package com.example.administrator.ximengjianyu.beans;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/**
|
||
|
* 亲情电话实体类
|
||
|
* @类 名 : AppFamilylovePhoneBean
|
||
|
* @功能描述 : TODO
|
||
|
* @作者信息 : 崔宝铖
|
||
|
* @创建时间 : 2018-06-06 20:01:36
|
||
|
* @修改备注 :
|
||
|
*/
|
||
|
public class AppFamilylovePhoneBean implements Serializable {
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
/**
|
||
|
* 联系人住址
|
||
|
*/
|
||
|
private String address="";
|
||
|
/**
|
||
|
* 联系人名字
|
||
|
*/
|
||
|
private String name="";
|
||
|
/**
|
||
|
* 状态:0:禁止呼出,1:允许呼出
|
||
|
*/
|
||
|
private String status="0";
|
||
|
/**
|
||
|
* 排序
|
||
|
*/
|
||
|
private Integer orders=1;
|
||
|
/**
|
||
|
* 与服刑人员的关系
|
||
|
*/
|
||
|
private String relation="其他";
|
||
|
/**
|
||
|
* 联系人身份证
|
||
|
*/
|
||
|
private String identity="";
|
||
|
/**
|
||
|
* 联系电话
|
||
|
*/
|
||
|
private String phone="";
|
||
|
|
||
|
public String getAddress() {
|
||
|
return address;
|
||
|
}
|
||
|
public void setAddress(String address) {
|
||
|
if(address == null) {
|
||
|
this.address = "";
|
||
|
}else {
|
||
|
this.address = address;
|
||
|
}
|
||
|
}
|
||
|
public String getName() {
|
||
|
return name;
|
||
|
}
|
||
|
public void setName(String name) {
|
||
|
if(name == null) {
|
||
|
this.name = "";
|
||
|
}else{
|
||
|
this.name = name;
|
||
|
}
|
||
|
}
|
||
|
public String getStatus() {
|
||
|
return status;
|
||
|
}
|
||
|
public void setStatus(String status) {
|
||
|
if(status == null) {
|
||
|
this.status = "0";
|
||
|
}else{
|
||
|
this.status = status;
|
||
|
}
|
||
|
}
|
||
|
public Integer getOrders() {
|
||
|
return orders;
|
||
|
}
|
||
|
public void setOrders(Integer orders) {
|
||
|
if(orders == null) {
|
||
|
this.orders = 1;
|
||
|
}else{
|
||
|
this.orders = orders;
|
||
|
}
|
||
|
}
|
||
|
public String getRelation() {
|
||
|
return relation;
|
||
|
}
|
||
|
public void setRelation(String relation) {
|
||
|
if(relation == null) {
|
||
|
this.relation = "其他";
|
||
|
}else {
|
||
|
this.relation = relation;
|
||
|
}
|
||
|
}
|
||
|
public String getIdentity() {
|
||
|
return identity;
|
||
|
}
|
||
|
public void setIdentity(String identity) {
|
||
|
if(identity == null) {
|
||
|
this.identity = "";
|
||
|
}else{
|
||
|
this.identity = identity;
|
||
|
}
|
||
|
}
|
||
|
public String getPhone() {
|
||
|
return phone;
|
||
|
}
|
||
|
public void setPhone(String phone) {
|
||
|
if(phone == null) {
|
||
|
this.phone = "";
|
||
|
}else{
|
||
|
this.phone = phone;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|