|
@@ -82,6 +82,12 @@ public class BomanReservat extends BaseEntity
|
|
|
@Excel(name = "接人人员id")
|
|
|
private Long receptionId;
|
|
|
|
|
|
+ /** 接人人员姓名 */
|
|
|
+ private String receptionName;
|
|
|
+
|
|
|
+ /** 接人人员手机号 */
|
|
|
+ private String receptionPhone;
|
|
|
+
|
|
|
/** 创建部门 */
|
|
|
@Excel(name = "创建部门")
|
|
|
private Long createDept;
|
|
@@ -240,31 +246,44 @@ public class BomanReservat extends BaseEntity
|
|
|
return createDept;
|
|
|
}
|
|
|
|
|
|
+ public String getReceptionName() {
|
|
|
+ return receptionName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReceptionPhone() {
|
|
|
+ return receptionPhone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReceptionName(String receptionName) {
|
|
|
+ this.receptionName = receptionName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReceptionPhone(String receptionPhone) {
|
|
|
+ this.receptionPhone = receptionPhone;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("reservatId", getReservatId())
|
|
|
- .append("visitName", getVisitName())
|
|
|
- .append("visitUnitName", getVisitUnitName())
|
|
|
- .append("visitPhone", getVisitPhone())
|
|
|
- .append("visitIdCard", getVisitIdCard())
|
|
|
- .append("visitNum", getVisitNum())
|
|
|
- .append("visitRemark", getVisitRemark())
|
|
|
- .append("visitDate", getVisitDate())
|
|
|
- .append("visitTime", getVisitTime())
|
|
|
- .append("visitDateTime", getVisitDateTime())
|
|
|
- .append("visitQr", getVisitQr())
|
|
|
- .append("visitType", getVisitType())
|
|
|
- .append("visitStatus", getVisitStatus())
|
|
|
- .append("reservatType", getReservatType())
|
|
|
- .append("isReception", getIsReception())
|
|
|
- .append("receptionId", getReceptionId())
|
|
|
- .append("createDept", getCreateDept())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .toString();
|
|
|
+ return "BomanReservat{" +
|
|
|
+ "reservatId=" + reservatId +
|
|
|
+ ", visitName='" + visitName + '\'' +
|
|
|
+ ", visitUnitName='" + visitUnitName + '\'' +
|
|
|
+ ", visitPhone='" + visitPhone + '\'' +
|
|
|
+ ", visitIdCard='" + visitIdCard + '\'' +
|
|
|
+ ", visitNum='" + visitNum + '\'' +
|
|
|
+ ", visitRemark='" + visitRemark + '\'' +
|
|
|
+ ", visitDate=" + visitDate +
|
|
|
+ ", visitTime='" + visitTime + '\'' +
|
|
|
+ ", visitDateTime=" + visitDateTime +
|
|
|
+ ", visitQr='" + visitQr + '\'' +
|
|
|
+ ", visitType='" + visitType + '\'' +
|
|
|
+ ", visitStatus='" + visitStatus + '\'' +
|
|
|
+ ", reservatType='" + reservatType + '\'' +
|
|
|
+ ", isReception='" + isReception + '\'' +
|
|
|
+ ", receptionId=" + receptionId +
|
|
|
+ ", receptionName='" + receptionName + '\'' +
|
|
|
+ ", receptionPhone='" + receptionPhone + '\'' +
|
|
|
+ ", createDept=" + createDept +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|