package com.application.zhangshi_app_android.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @author Ljj
|
* @date 2023.05.22. 22:58
|
* @desc
|
*/
|
public class PetBean implements Serializable {
|
//id
|
private String id;
|
//犬证号码
|
private String idNum;
|
//防伪码
|
private String securityCode;
|
//犬种
|
private String type;
|
//名字
|
private String name;
|
//出生日期
|
private String birth;
|
//性别 0 雌 1 雄
|
private int sex;
|
//毛色
|
private String color;
|
//犬只性质
|
private String properties;
|
//饮食习惯(喜)
|
private String eatHabit;
|
//饮食习惯(忌)
|
private String disEatHabit;
|
//生活习惯(喜)
|
private String lifeHabit;
|
//生活习惯(忌)
|
private String disLifeHabit;
|
//居住地址
|
private String address;
|
//能听懂的方言
|
private String dialect;
|
|
private int familyId;
|
private int ownData;
|
private String createTime;
|
private String headPicture;
|
//全身照
|
private String fullPicture;
|
//犬主姓名
|
private String masterName;
|
//犬主身份证号
|
private String masterIdNum;
|
//犬主电话
|
private String phone;
|
//犬主地址
|
private String masterAddress;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getIdNum() {
|
return idNum;
|
}
|
|
public void setIdNum(String idNum) {
|
this.idNum = idNum;
|
}
|
|
public String getSecurityCode() {
|
return securityCode;
|
}
|
|
public void setSecurityCode(String securityCode) {
|
this.securityCode = securityCode;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getBirth() {
|
return birth;
|
}
|
|
public void setBirth(String birth) {
|
this.birth = birth;
|
}
|
|
public String getSex() {
|
return sex==0?"雌":"雄";
|
}
|
|
public void setSex(String sex) {
|
this.sex = sex.equals("雌")?0:1;
|
}
|
|
public String getColor() {
|
return color;
|
}
|
|
public void setColor(String color) {
|
this.color = color;
|
}
|
|
public String getProperties() {
|
return properties;
|
}
|
|
public void setProperties(String properties) {
|
this.properties = properties;
|
}
|
|
public String getEatHabit() {
|
return eatHabit;
|
}
|
|
public void setEatHabit(String eatHabit) {
|
this.eatHabit = eatHabit;
|
}
|
|
public String getDisEatHabit() {
|
return disEatHabit;
|
}
|
|
public void setDisEatHabit(String disEatHabit) {
|
this.disEatHabit = disEatHabit;
|
}
|
|
public String getLifeHabit() {
|
return lifeHabit;
|
}
|
|
public void setLifeHabit(String lifeHabit) {
|
this.lifeHabit = lifeHabit;
|
}
|
|
public String getDisLifeHabit() {
|
return disLifeHabit;
|
}
|
|
public void setDisLifeHabit(String disLifeHabit) {
|
this.disLifeHabit = disLifeHabit;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getDialect() {
|
return dialect;
|
}
|
|
public void setDialect(String dialect) {
|
this.dialect = dialect;
|
}
|
|
|
public int getFamilyId() {
|
return familyId;
|
}
|
|
public void setFamilyId(int familyId) {
|
this.familyId = familyId;
|
}
|
|
public int getOwnData() {
|
return ownData;
|
}
|
|
public void setOwnData(int ownData) {
|
this.ownData = ownData;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getHeadPicture() {
|
return headPicture;
|
}
|
|
public void setHeadPicture(String headPicture) {
|
this.headPicture = headPicture;
|
}
|
|
public String getFullPicture() {
|
return fullPicture;
|
}
|
|
public void setFullPicture(String fullPicture) {
|
this.fullPicture = fullPicture;
|
}
|
|
public String getMasterName() {
|
return masterName;
|
}
|
|
public void setMasterName(String masterName) {
|
this.masterName = masterName;
|
}
|
|
public String getMasterIdNum() {
|
return masterIdNum;
|
}
|
|
public void setMasterIdNum(String masterIdNum) {
|
this.masterIdNum = masterIdNum;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getMasterAddress() {
|
return masterAddress;
|
}
|
|
public void setMasterAddress(String masterAddress) {
|
this.masterAddress = masterAddress;
|
}
|
}
|