CZT
2023-11-27 c206acfaedc69c390fb67daa81bc686f58a212ef
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
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;
 
}