package com.ld.igds.models;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
|
import lombok.Data;
|
|
/**
|
* OA-工资管理
|
*
|
* @author: andy.jia
|
* @description:
|
* @version:
|
* @data:2020年5月27日
|
*
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_OA_SALARY")
|
public class OASalary implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@Column(name = "ID_", length = 40)
|
@PropertyDef(label = "主键")
|
private String id;
|
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "DEPT_ID_", length = 40)
|
@PropertyDef(label = "所属分库")
|
private String deptId;
|
|
@Column(name = "USER_ID_", length = 20)
|
@PropertyDef(label = "员工工号")
|
private String userId;
|
|
@Column(name = "USER_NAME_", length = 50)
|
@PropertyDef(label = "员工姓名")
|
private String userName;
|
|
@Column(name = "WORK_DAYS_")
|
@PropertyDef(label = "考勤天数")
|
private Integer workDayS;
|
|
@Column(name = "SALARY_")
|
@PropertyDef(label = "工资")
|
private double salary;
|
|
@Column(name = "ALLOWANCE_")
|
@PropertyDef(label = "津贴")
|
private double allowance;
|
|
@Column(name = "ALLOWANCE_DESC_", length = 200)
|
@PropertyDef(label = "津贴说明")
|
private String allowanceDesc;
|
|
@Column(name = "DEL_SEC_")
|
@PropertyDef(label = "社保")
|
private double delSec;
|
|
@Column(name = "DEL_FUND_")
|
@PropertyDef(label = "公积金")
|
private double delFund;
|
|
@Column(name = "DEL_TAX_")
|
@PropertyDef(label = "个税")
|
private double delTax;
|
|
@Column(name = "DEL_OTHER_")
|
@PropertyDef(label = "其他扣除")
|
private double delOther;
|
|
@Column(name = "DEL_SUM_")
|
@PropertyDef(label = "扣总")
|
private double delSum;
|
|
@Column(name = "SALARY_REAL_")
|
@PropertyDef(label = "实发工资")
|
private double salaryReal;
|
|
@Column(name = "SALARY_TIME_", length = 10)
|
@PropertyDef(label = "工资周期", description = "YYYY-MM")
|
private String salaryTime;
|
|
@Column(name = "REMARK_", length = 255)
|
@PropertyDef(label = "备注")
|
private String remark;
|
|
}
|