From 871d4095b07cedacb7fbef4c38d64982f539c404 Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期四, 09 五月 2024 15:40:15 +0800 Subject: [PATCH] 测试提交 --- src/main/java/com/flow/pojo/TbFuwuqi.java | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 161 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/flow/pojo/TbFuwuqi.java b/src/main/java/com/flow/pojo/TbFuwuqi.java new file mode 100644 index 0000000..27e25aa --- /dev/null +++ b/src/main/java/com/flow/pojo/TbFuwuqi.java @@ -0,0 +1,161 @@ +package com.flow.pojo; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +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; + +// @TableField() + 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; + + @TableField(exist = false) + private String caozuoname; + + 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; + } + + public String getCaozuoname() { + return caozuoname; + } + + public void setCaozuoname(String caozuoname) { + this.caozuoname = caozuoname; + } +} -- Gitblit v1.9.3