package com.ruoyi.system.domain; import java.math.BigDecimal; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; /** * orders对象 tb_orders * * @author wzp * @date 2025-05-01 */ public class TbOrders extends BaseEntity { private static final long serialVersionUID = 1L; /** 广交的订单 ID,系统唯一创建订单 */ private Long OrderID; /** 联系人 */ @Excel(name = "联系人") private String LinkPerson; /** 联系电话 */ @Excel(name = "联系电话") private String LinkTel; /** 受理电话,来电电话 */ @Excel(name = "受理电话,来电电话") private String AlarmTel; /** 患者姓名 */ @Excel(name = "患者姓名") private String PatientName; /** 患者性别 */ @Excel(name = "患者性别") private Integer Sex; /** 患者年龄 */ @Excel(name = "患者年龄") private String Age; /** 患者体重 */ @Excel(name = "患者体重") private String Kg; /** 患者有无意识 */ @Excel(name = "患者有无意识") private String Sense; /** 现场地址 */ @Excel(name = "现场地址") private String LocalAddress; /** 现场地址经度(目前是 gcj02 坐标系) */ @Excel(name = "现场地址经度", readConverterExp = "目=前是,g=cj02,坐=标系") private Long LocalLongitude; /** 现场地址纬度 */ @Excel(name = "现场地址纬度") private Long LocalLatitude; /** 现场所在省 */ @Excel(name = "现场所在省") private String LocalProvince; /** 现场所在城市 */ @Excel(name = "现场所在城市") private String LocalCity; /** 现场所在区 */ @Excel(name = "现场所在区") private String LocalDistrict; /** 送往地址 */ @Excel(name = "送往地址") private String SendAddress; /** 送往经度 */ @Excel(name = "送往经度") private Long SendLongitude; /** 送往纬度 */ @Excel(name = "送往纬度") private Long SendLatitude; /** 送往所在省 */ @Excel(name = "送往所在省") private String SendProvince; /** 送往所在城市 */ @Excel(name = "送往所在城市") private String SendCity; /** 送往所在区 */ @Excel(name = "送往所在区") private String SendDistrict; /** 预估金额 */ @Excel(name = "预估金额") private BigDecimal BookingPrice; /** 预约时间(时间类型,精确到小时) */ @Excel(name = "预约时间", readConverterExp = "时=间类型,精确到小时") private Date BookingDate; /** 病人情况 */ @Excel(name = "病人情况") private String Complaint; /** 人数 */ @Excel(name = "人数") private Long PatientCount; /** 预估预约公里 */ @Excel(name = "预估预约公里") private Long BookingKM; /** 普通护送,监护护送(可按照第三方的字典新增或赋值) */ @Excel(name = "普通护送,监护护送", readConverterExp = "可=按照第三方的字典新增或赋值") private Long EscortCode; /** 步梯或电梯 */ @Excel(name = "步梯或电梯") private Long LiftingCode; /** 楼层 */ @Excel(name = "楼层") private Long LiftingFloor; /** 监护,重症(可按照第三方的字典新增或赋值) */ @Excel(name = "监护,重症(可按照第三方的字典新增或赋值)") private Long RequirementCode; /** 转运类型(市内,市外,省外等,可按照第三方的字典新增或赋值) */ @Excel(name = "转运类型", readConverterExp = "市=内,市外,省外等,可按照第三方的字典新增或赋值") private Long TypeCode; /** 第三方调用接口返回结果,1-成功,2-失败 */ @Excel(name = "第三方调用接口返回结果,1-成功,2-失败") private Integer ThirdPartyResult; /** 第三方服务ID */ @Excel(name = "第三方服务ID") private String ServiceOrdID; /** 第三方服务单号 */ @Excel(name = "第三方服务单号") private String ServiceOrdNo; private String Remark; private Date CreateTime; private Date UpdateTime; public void setOrderID(Long OrderID) { this.OrderID = OrderID; } public Long getOrderID() { return OrderID; } public void setLinkPerson(String LinkPerson) { this.LinkPerson = LinkPerson; } public String getLinkPerson() { return LinkPerson; } public void setLinkTel(String LinkTel) { this.LinkTel = LinkTel; } public String getLinkTel() { return LinkTel; } public void setAlarmTel(String AlarmTel) { this.AlarmTel = AlarmTel; } public String getAlarmTel() { return AlarmTel; } public void setPatientName(String PatientName) { this.PatientName = PatientName; } public String getPatientName() { return PatientName; } public void setSex(Integer Sex) { this.Sex = Sex; } public Integer getSex() { return Sex; } public void setAge(String Age) { this.Age = Age; } public String getAge() { return Age; } public void setKg(String Kg) { this.Kg = Kg; } public String getKg() { return Kg; } public void setSense(String Sense) { this.Sense = Sense; } public String getSense() { return Sense; } public void setLocalAddress(String LocalAddress) { this.LocalAddress = LocalAddress; } public String getLocalAddress() { return LocalAddress; } public void setLocalLongitude(Long LocalLongitude) { this.LocalLongitude = LocalLongitude; } public Long getLocalLongitude() { return LocalLongitude; } public void setLocalLatitude(Long LocalLatitude) { this.LocalLatitude = LocalLatitude; } public Long getLocalLatitude() { return LocalLatitude; } public void setLocalProvince(String LocalProvince) { this.LocalProvince = LocalProvince; } public String getLocalProvince() { return LocalProvince; } public void setLocalCity(String LocalCity) { this.LocalCity = LocalCity; } public String getLocalCity() { return LocalCity; } public void setLocalDistrict(String LocalDistrict) { this.LocalDistrict = LocalDistrict; } public String getLocalDistrict() { return LocalDistrict; } public void setSendAddress(String SendAddress) { this.SendAddress = SendAddress; } public String getSendAddress() { return SendAddress; } public void setSendLongitude(Long SendLongitude) { this.SendLongitude = SendLongitude; } public Long getSendLongitude() { return SendLongitude; } public void setSendLatitude(Long SendLatitude) { this.SendLatitude = SendLatitude; } public Long getSendLatitude() { return SendLatitude; } public void setSendProvince(String SendProvince) { this.SendProvince = SendProvince; } public String getSendProvince() { return SendProvince; } public void setSendCity(String SendCity) { this.SendCity = SendCity; } public String getSendCity() { return SendCity; } public void setSendDistrict(String SendDistrict) { this.SendDistrict = SendDistrict; } public String getSendDistrict() { return SendDistrict; } public void setBookingPrice(BigDecimal BookingPrice) { this.BookingPrice = BookingPrice; } public BigDecimal getBookingPrice() { return BookingPrice; } public void setBookingDate(Date BookingDate) { this.BookingDate = BookingDate; } public Date getBookingDate() { return BookingDate; } public void setComplaint(String Complaint) { this.Complaint = Complaint; } public String getComplaint() { return Complaint; } public void setPatientCount(Long PatientCount) { this.PatientCount = PatientCount; } public Long getPatientCount() { return PatientCount; } public void setBookingKM(Long BookingKM) { this.BookingKM = BookingKM; } public Long getBookingKM() { return BookingKM; } public void setEscortCode(Long EscortCode) { this.EscortCode = EscortCode; } public Long getEscortCode() { return EscortCode; } public void setLiftingCode(Long LiftingCode) { this.LiftingCode = LiftingCode; } public Long getLiftingCode() { return LiftingCode; } public void setLiftingFloor(Long LiftingFloor) { this.LiftingFloor = LiftingFloor; } public Long getLiftingFloor() { return LiftingFloor; } public void setRequirementCode(Long RequirementCode) { this.RequirementCode = RequirementCode; } public Long getRequirementCode() { return RequirementCode; } public void setTypeCode(Long TypeCode) { this.TypeCode = TypeCode; } public Long getTypeCode() { return TypeCode; } public void setThirdPartyResult(Integer ThirdPartyResult) { this.ThirdPartyResult = ThirdPartyResult; } public Integer getThirdPartyResult() { return ThirdPartyResult; } public void setServiceOrdID(String ServiceOrdID) { this.ServiceOrdID = ServiceOrdID; } public String getServiceOrdID() { return ServiceOrdID; } public void setServiceOrdNo(String ServiceOrdNo) { this.ServiceOrdNo = ServiceOrdNo; } public String getServiceOrdNo() { return ServiceOrdNo; } public String getRemark(){return Remark;} public void setRemark(String Remark){this.Remark =Remark;} public Date getCreateTime(){return CreateTime;} public void setCreateTime(Date CreateTime){this.CreateTime =CreateTime;} public Date getUpdateTime(){return UpdateTime;} public void setUpdateTime(Date UpdateTime){this.UpdateTime =UpdateTime;} @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("OrderID", getOrderID()) .append("LinkPerson", getLinkPerson()) .append("LinkTel", getLinkTel()) .append("AlarmTel", getAlarmTel()) .append("PatientName", getPatientName()) .append("Sex", getSex()) .append("Age", getAge()) .append("Kg", getKg()) .append("Sense", getSense()) .append("LocalAddress", getLocalAddress()) .append("LocalLongitude", getLocalLongitude()) .append("LocalLatitude", getLocalLatitude()) .append("LocalProvince", getLocalProvince()) .append("LocalCity", getLocalCity()) .append("LocalDistrict", getLocalDistrict()) .append("SendAddress", getSendAddress()) .append("SendLongitude", getSendLongitude()) .append("SendLatitude", getSendLatitude()) .append("SendProvince", getSendProvince()) .append("SendCity", getSendCity()) .append("SendDistrict", getSendDistrict()) .append("BookingPrice", getBookingPrice()) .append("BookingDate", getBookingDate()) .append("Remark", getRemark()) .append("Complaint", getComplaint()) .append("PatientCount", getPatientCount()) .append("BookingKM", getBookingKM()) .append("EscortCode", getEscortCode()) .append("LiftingCode", getLiftingCode()) .append("LiftingFloor", getLiftingFloor()) .append("RequirementCode", getRequirementCode()) .append("TypeCode", getTypeCode()) .append("ThirdPartyResult", getThirdPartyResult()) .append("ServiceOrdID", getServiceOrdID()) .append("ServiceOrdNo", getServiceOrdNo()) .append("CreateTime", getCreateTime()) .append("UpdateTime", getUpdateTime()) .toString(); } }