package com.application.zhangshi_app_android.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @author Ljj
|
* @date 2023.05.08. 20:33
|
* @desc 旅游经历 Bean
|
*/
|
public class TourismExperienceBean implements Serializable{
|
//id
|
private int id;
|
//标题
|
private String title;
|
//发生时间
|
private String happenTime;
|
//地点
|
private String address;
|
//人物
|
private String people;
|
//旅期
|
private String travelPeriod;
|
//持证旅游
|
private String certificate;
|
//费用
|
private String totalPrice;
|
//0.公费 1.自费
|
private int self;
|
//备注
|
private String remark;
|
//电子文件
|
private String url;
|
//创建时间
|
private String createTime;
|
//费用记录表id
|
private String feeId;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getHappenTime() {
|
return happenTime;
|
}
|
|
public void setHappenTime(String happenTime) {
|
this.happenTime = happenTime;
|
}
|
|
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 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 String getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(String totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public int getSelf() {
|
return self;
|
}
|
|
public void setSelf(int self) {
|
this.self = self;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getFeeId() {
|
return feeId;
|
}
|
|
public void setFeeId(String feeId) {
|
this.feeId = feeId;
|
}
|
}
|