最新版宁夏武警公众号项目后端
This commit is contained in:
141
src/main/java/com/guahao/api/app/vo/CardInfo.java
Normal file
141
src/main/java/com/guahao/api/app/vo/CardInfo.java
Normal file
@@ -0,0 +1,141 @@
|
||||
package com.guahao.api.app.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class CardInfo implements Serializable {
|
||||
private Integer id;
|
||||
private Integer userId; // 用户id
|
||||
private String name; // 用户姓名
|
||||
private String phone; // 电话
|
||||
private String cardNo; // 卡号
|
||||
private String cardType; // 卡类型
|
||||
private String status; // 卡状态
|
||||
private String totalFee; // 卡余额
|
||||
private String isYes; //是否默认卡
|
||||
private String patientId; // 病人id
|
||||
private String ctime; // 创建时间
|
||||
private String utime; // 修改时间
|
||||
private String token;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getIsYes() {
|
||||
return isYes;
|
||||
}
|
||||
|
||||
public void setIsYes(String isYes) {
|
||||
this.isYes = isYes;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getCardType() {
|
||||
return cardType;
|
||||
}
|
||||
|
||||
public void setCardType(String cardType) {
|
||||
this.cardType = cardType;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getTotalFee() {
|
||||
return totalFee;
|
||||
}
|
||||
|
||||
public void setTotalFee(String totalFee) {
|
||||
this.totalFee = totalFee;
|
||||
}
|
||||
|
||||
public String getPatientId() {
|
||||
return patientId;
|
||||
}
|
||||
|
||||
public void setPatientId(String patientId) {
|
||||
this.patientId = patientId;
|
||||
}
|
||||
|
||||
public String getCtime() {
|
||||
return ctime;
|
||||
}
|
||||
|
||||
public void setCtime(String ctime) {
|
||||
this.ctime = ctime;
|
||||
}
|
||||
|
||||
public String getUtime() {
|
||||
return utime;
|
||||
}
|
||||
|
||||
public void setUtime(String utime) {
|
||||
this.utime = utime;
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "UserCardVo{" +
|
||||
"id=" + id +
|
||||
", userId=" + userId +
|
||||
", name='" + name + '\'' +
|
||||
", phone='" + phone + '\'' +
|
||||
", cardNo='" + cardNo + '\'' +
|
||||
", cardType='" + cardType + '\'' +
|
||||
", status='" + status + '\'' +
|
||||
", totalFee='" + totalFee + '\'' +
|
||||
", isYes=" + isYes +
|
||||
", patientId='" + patientId + '\'' +
|
||||
", ctime='" + ctime + '\'' +
|
||||
", utime='" + utime + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user