📄 salary.java
字号:
package org.pan.web;
/**工资实体对象类
* Description:
* Copyright: Copyright (c) 2003
* Company: 双鱼林电脑工作室出品
* @author: 双鱼林
* @version 1.0
*/
public class salary {
private long salaryId; //工资编号
private String employeeId; //职工编号
private String employeeName; //职工姓名
private Integer year; //年份
private Integer month; //月份
private float basicWage; //基本工资
private float overtimeWage; //加工工资
private float trafficWage; //交通补助
private float totalWage; //总工资
private float kaoqinReduce; //考勤扣除
private float secureReduce; //保险扣除
private float taxReduce; //扣税
private float totalReduce; //总扣除
private float realWage; //实际工资
private String editTime; //编辑时间
private String memo; //备注
public salary() {
salaryId = 0;
employeeId = "";
employeeName = "";
year = 0; month = 0;
basicWage = overtimeWage = trafficWage = totalWage = 0;
kaoqinReduce = secureReduce = taxReduce = totalReduce = 0;
realWage = 0;
editTime = "";
memo = "";
}
public void setSalaryId(long newSalaryId) {
this.salaryId = newSalaryId;
}
public long getSalaryId() {
return this.salaryId;
}
public void setEmployeeId(String newEmployeeId) {
this.employeeId = newEmployeeId;
}
public String getEmployeeId() {
return this.employeeId;
}
public void setEmployeeName(String newEmployeeName) {
this.employeeName = newEmployeeName;
}
public String getEmployeeName() {
return this.employeeName;
}
public void setYear(Integer newYear) {
this.year = newYear;
}
public Integer getYear() {
return this.year;
}
public void setMonth(Integer newMonth) {
this.month = newMonth;
}
public Integer getMonth() {
return this.month;
}
public void setBasicWage(float newBasicWage) {
this.basicWage = newBasicWage;
}
public float getBasicWage() {
return this.basicWage;
}
public void setOvertimeWage(float newOvertimeWage) {
this.overtimeWage = newOvertimeWage;
}
public float getOvertimeWage() {
return this.overtimeWage;
}
public void setTrafficWage(float newTrafficWage) {
this.trafficWage = newTrafficWage;
}
public float getTrafficWage() {
return this.trafficWage;
}
public void setTotalWage(float newTotalWage) {
this.totalWage = newTotalWage;
}
public float getTotalWage() {
return this.totalWage;
}
public void setKaoqinReduce(float newKaoqinReduce) {
this.kaoqinReduce = newKaoqinReduce;
}
public float getKaoqinReduce() {
return this.kaoqinReduce;
}
public void setSecureReduce(float newSecureReduce) {
this.secureReduce = newSecureReduce;
}
public float getSecureReduce() {
return this.secureReduce;
}
public void setTaxReduce(float newTaxReduce) {
this.taxReduce = newTaxReduce;
}
public float getTaxReduce() {
return this.taxReduce;
}
public void setTotalReduce(float newTotalReduce) {
this.totalReduce = newTotalReduce;
}
public float getTotalReduce() {
return this.totalReduce;
}
public void setRealWage(float newRealWage) {
this.realWage = newRealWage;
}
public float getRealWage() {
return this.realWage;
}
public void setEditTime(String newEditTime) {
this.editTime = newEditTime;
}
public String getEditTime() {
return this.editTime;
}
public void setMemo(String newMemo) {
this.memo = newMemo;
}
public String getMemo() {
return this.memo;
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -