package com.ruoyi.system.domain;
|
|
import java.math.BigDecimal;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 福祉车任务扩展信息对象 sys_task_welfare
|
*
|
* @author ruoyi
|
* @date 2024-01-16
|
*/
|
public class SysTaskWelfare extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/** 主键ID */
|
private Long id;
|
|
/** 任务ID */
|
private Long taskId;
|
|
/** 乘客联系人 */
|
private String passengerContact;
|
|
/** 乘客联系电话 */
|
private String passengerPhone;
|
|
/** 乘客姓名 */
|
private String passengerName;
|
|
/** 乘客年龄 */
|
private Integer passengerAge;
|
|
/** 乘客性别 */
|
private String passengerGender;
|
|
/** 乘客身份证号 */
|
private String passengerIdCard;
|
|
/** 特殊需求描述 */
|
private String specialNeeds;
|
|
/** 服务类型 */
|
private String serviceType;
|
|
/** 接送地址 */
|
private String pickupAddress;
|
|
/** 接送地址经度 */
|
private BigDecimal pickupLongitude;
|
|
/** 接送地址纬度 */
|
private BigDecimal pickupLatitude;
|
|
/** 目的地址 */
|
private String destinationAddress;
|
|
/** 目的地址经度 */
|
private BigDecimal destinationLongitude;
|
|
/** 目的地址纬度 */
|
private BigDecimal destinationLatitude;
|
|
/** 服务公里数 */
|
private BigDecimal serviceDistance;
|
|
/** 服务费用 */
|
private BigDecimal servicePrice;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getTaskId() {
|
return taskId;
|
}
|
|
public void setTaskId(Long taskId) {
|
this.taskId = taskId;
|
}
|
|
public String getPassengerContact() {
|
return passengerContact;
|
}
|
|
public void setPassengerContact(String passengerContact) {
|
this.passengerContact = passengerContact;
|
}
|
|
public String getPassengerPhone() {
|
return passengerPhone;
|
}
|
|
public void setPassengerPhone(String passengerPhone) {
|
this.passengerPhone = passengerPhone;
|
}
|
|
public String getPassengerName() {
|
return passengerName;
|
}
|
|
public void setPassengerName(String passengerName) {
|
this.passengerName = passengerName;
|
}
|
|
public Integer getPassengerAge() {
|
return passengerAge;
|
}
|
|
public void setPassengerAge(Integer passengerAge) {
|
this.passengerAge = passengerAge;
|
}
|
|
public String getPassengerGender() {
|
return passengerGender;
|
}
|
|
public void setPassengerGender(String passengerGender) {
|
this.passengerGender = passengerGender;
|
}
|
|
public String getPassengerIdCard() {
|
return passengerIdCard;
|
}
|
|
public void setPassengerIdCard(String passengerIdCard) {
|
this.passengerIdCard = passengerIdCard;
|
}
|
|
public String getSpecialNeeds() {
|
return specialNeeds;
|
}
|
|
public void setSpecialNeeds(String specialNeeds) {
|
this.specialNeeds = specialNeeds;
|
}
|
|
public String getServiceType() {
|
return serviceType;
|
}
|
|
public void setServiceType(String serviceType) {
|
this.serviceType = serviceType;
|
}
|
|
public String getPickupAddress() {
|
return pickupAddress;
|
}
|
|
public void setPickupAddress(String pickupAddress) {
|
this.pickupAddress = pickupAddress;
|
}
|
|
public BigDecimal getPickupLongitude() {
|
return pickupLongitude;
|
}
|
|
public void setPickupLongitude(BigDecimal pickupLongitude) {
|
this.pickupLongitude = pickupLongitude;
|
}
|
|
public BigDecimal getPickupLatitude() {
|
return pickupLatitude;
|
}
|
|
public void setPickupLatitude(BigDecimal pickupLatitude) {
|
this.pickupLatitude = pickupLatitude;
|
}
|
|
public String getDestinationAddress() {
|
return destinationAddress;
|
}
|
|
public void setDestinationAddress(String destinationAddress) {
|
this.destinationAddress = destinationAddress;
|
}
|
|
public BigDecimal getDestinationLongitude() {
|
return destinationLongitude;
|
}
|
|
public void setDestinationLongitude(BigDecimal destinationLongitude) {
|
this.destinationLongitude = destinationLongitude;
|
}
|
|
public BigDecimal getDestinationLatitude() {
|
return destinationLatitude;
|
}
|
|
public void setDestinationLatitude(BigDecimal destinationLatitude) {
|
this.destinationLatitude = destinationLatitude;
|
}
|
|
public BigDecimal getServiceDistance() {
|
return serviceDistance;
|
}
|
|
public void setServiceDistance(BigDecimal serviceDistance) {
|
this.serviceDistance = serviceDistance;
|
}
|
|
public BigDecimal getServicePrice() {
|
return servicePrice;
|
}
|
|
public void setServicePrice(BigDecimal servicePrice) {
|
this.servicePrice = servicePrice;
|
}
|
|
@Override
|
public String toString() {
|
return "SysTaskWelfare{" +
|
"id=" + id +
|
", taskId=" + taskId +
|
", passengerName='" + passengerName + '\'' +
|
", pickupAddress='" + pickupAddress + '\'' +
|
", destinationAddress='" + destinationAddress + '\'' +
|
", serviceDistance=" + serviceDistance +
|
", servicePrice=" + servicePrice +
|
'}';
|
}
|
}
|