📄 subsidies.java
字号:
package com.utils.model;
import java.io.Serializable;
public class Subsidies implements Serializable {
/**
*
*/
private static final long serialVersionUID = 2360574998625494091L;
private String id;
private String personName;
private String beginTime;
private String endTime;
private String address;
private String course;
private int cost;
private int salary;
private int days;
private int hours;
private int type;
public Subsidies(){}
public Subsidies(String id, String personName, String beginTime, String endTime, String address, String course, int cost, int salary, int days, int hours, int type) {
super();
this.id = id;
this.personName = personName;
this.beginTime = beginTime;
this.endTime = endTime;
this.address = address;
this.course = course;
this.cost = cost;
this.salary = salary;
this.days = days;
this.hours = hours;
this.type = type;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getBeginTime() {
return beginTime;
}
public void setBeginTime(String beginTime) {
this.beginTime = beginTime;
}
public int getCost() {
return cost;
}
public void setCost(int cost) {
this.cost = cost;
}
public String getCourse() {
return course;
}
public void setCourse(String course) {
this.course = course;
}
public int getDays() {
return days;
}
public void setDays(int days) {
this.days = days;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public int getHours() {
return hours;
}
public void setHours(int hours) {
this.hours = hours;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPersonName() {
return personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public int getSalary() {
return salary;
}
public void setSalary(int salary) {
this.salary = salary;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -