?? salary.java
字號:
package org.pan.web;
/**工資實(shí)體對象類
* 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; //交通補(bǔ)助
private float totalWage; //總工資
private float kaoqinReduce; //考勤扣除
private float secureReduce; //保險(xiǎn)扣除
private float taxReduce; //扣稅
private float totalReduce; //總扣除
private float realWage; //實(shí)際工資
private String editTime; //編輯時(shí)間
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;
}
};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -