fei.wang
2024-05-13 b9b58b9ef261cb290d93465f88a2cbd814b576f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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;
    }
}