package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 旅行记录基本信息表
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@TableName("z_travel_base")
|
public class ZTravelBase implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 地点
|
*/
|
private String address;
|
|
/**
|
* 所有参加本次旅行的人物,用逗号隔开
|
*/
|
private String people;
|
|
/**
|
* 旅行记录的标题
|
*/
|
private String title;
|
|
/**
|
* 旅期
|
*/
|
private String travelPeriod;
|
|
/**
|
* 所持的证件,多个用逗号隔开
|
*/
|
private String certificate;
|
|
/**
|
* 本次旅行总费用
|
*/
|
private Double totalPrice;
|
|
/**
|
* 0:公费,1:自费
|
*/
|
private Integer isSelf;
|
|
/**
|
* 备注信息
|
*/
|
private String remark;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getPeople() {
|
return people;
|
}
|
|
public void setPeople(String people) {
|
this.people = people;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getTravelPeriod() {
|
return travelPeriod;
|
}
|
|
public void setTravelPeriod(String travelPeriod) {
|
this.travelPeriod = travelPeriod;
|
}
|
|
public String getCertificate() {
|
return certificate;
|
}
|
|
public void setCertificate(String certificate) {
|
this.certificate = certificate;
|
}
|
|
public Double getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(Double totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public Integer getIsSelf() {
|
return isSelf;
|
}
|
|
public void setIsSelf(Integer isSelf) {
|
this.isSelf = isSelf;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
@Override
|
public String toString() {
|
return "ZTravelBase{" +
|
"id=" + id +
|
", address=" + address +
|
", people=" + people +
|
", title=" + title +
|
", travelPeriod=" + travelPeriod +
|
", certificate=" + certificate +
|
", totalPrice=" + totalPrice +
|
", isSelf=" + isSelf +
|
", remark=" + remark +
|
"}";
|
}
|
}
|