package com.flow.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
/**
|
*
|
*/
|
@TableName("tb_fuwuqi")
|
public class TbFuwuqi {
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
private String company;
|
|
private String startdate;
|
|
private String enddate;
|
|
private String remainingdays;
|
private Double expense;
|
|
private String rechargedate;
|
private String rechargemoney;
|
|
private String none;
|
|
private String notes;
|
|
private String servername;
|
|
|
|
public TbFuwuqi(Integer id, String company, String startdate, String enddate, String remainingdays, Double expense, String rechargedate, String rechargemoney, String notes,String none,String servername) {
|
this.id = id;
|
this.company = company;
|
this.startdate = startdate;
|
this.enddate = enddate;
|
this.remainingdays = remainingdays;
|
this.expense = expense;
|
this.rechargedate = rechargedate;
|
this.rechargemoney = rechargemoney;
|
this.notes = notes;
|
|
this.none = none;
|
this.servername = servername;
|
|
}
|
public TbFuwuqi() {
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getCompany() {
|
return company;
|
}
|
|
public void setCompany(String company) {
|
this.company = company;
|
}
|
|
|
|
public String getEnddate() {
|
return enddate;
|
}
|
|
public void setEnddate(String enddate) {
|
this.enddate = enddate;
|
}
|
|
public String getRemainingdays() {
|
return remainingdays;
|
}
|
|
public void setRemainingdays(String remainingdays) {
|
this.remainingdays = remainingdays;
|
}
|
|
public Double getExpense() {
|
return expense;
|
}
|
|
public void setExpense(Double expense) {
|
this.expense = expense;
|
}
|
|
public String getRechargedate() {
|
return rechargedate;
|
}
|
|
public void setRechargedate(String rechargedate) {
|
this.rechargedate = rechargedate;
|
}
|
|
public String getRechargemoney() {
|
return rechargemoney;
|
}
|
|
public void setRechargemoney(String rechargemoney) {
|
this.rechargemoney = rechargemoney;
|
}
|
|
public String getNotes() {
|
return notes;
|
}
|
|
public void setNotes(String notes) {
|
this.notes = notes;
|
}
|
|
// public String getStartDate() {
|
// return startDate;
|
// }
|
//
|
// public void setStartDate(String startDate) {
|
// this.startDate = startDate;
|
// }
|
|
public String getNone() {
|
return none;
|
}
|
|
public void setNone(String none) {
|
this.none = none;
|
}
|
|
public String getStartdate() {
|
return startdate;
|
}
|
|
public void setStartdate(String startdate) {
|
this.startdate = startdate;
|
}
|
|
public String getServername() {
|
return servername;
|
}
|
|
public void setServername(String servername) {
|
this.servername = servername;
|
}
|
}
|