username@email.com
2021-06-28 76430b83e28b43122886c1cd8a9fb1cd61040d22
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    public class HrSalaryDTO
    {
        public string Id { get; set; }
        public string Userid { get; set; }
        public int Year { get; set; }
        public int Month { get; set; }
 
        public string YearMonth { get { return Year + "-" + Month.ToString().PadLeft(2, '0'); } }
 
        public string Usernumber { get; set; }
        public string UserName { get; set; }
        public string DeptName { get; set; }
        public decimal? Jibengongzi { get; set; }
        public decimal? Baomifei { get; set; }
        public decimal? Gongzuobutie { get; set; }
 
        public decimal? Jiabangongzi { get; set; }
 
        public decimal? Shebao { get; set; }
        public decimal? Dianhuabutie { get; set; }
        public decimal? Quanqinjiang { get; set; }
        public decimal? Jiaotngbutie { get; set; }
        public decimal? Jixiaoticheng { get; set; }
        public decimal? Jiangjin { get; set; }
        public decimal? Bufagongzi { get; set; }
        public decimal sum_fgz
        {
            get
            {
                return ( (Jibengongzi??0) + (Baomifei??0) + (Gongzuobutie??0) + (Jiabangongzi??0) + (Shebao??0) +
                  (Dianhuabutie??0) + (Quanqinjiang??0) + (Jiaotngbutie??0) + (Jixiaoticheng??0) + (Jiangjin??0) + (Bufagongzi??0));
            }
        }
 
        public decimal? Shebaokou { get; set; }
        public decimal? Geshui { get; set; }
        public decimal? Dianhuafei { get; set; }
        public decimal? Queqin { get; set; }
        public decimal? Fakuan { get; set; }
        public decimal? Peichang { get; set; }
        public decimal? Jiucuo { get; set; }        
        public decimal sum_kgz
        {
            get
            {
                return (Shebaokou??0) + (Geshui?? 0) + (Dianhuafei ?? 0) + (Queqin ?? 0) + (Fakuan ?? 0) + (Peichang ?? 0) + (Jiucuo ?? 0);
            }
        }
 
        public decimal? Daozhanggongzi { get; set; }
        public decimal? Yufagongzi { get; set; }
        public decimal? Yufagongziheji { get; set; }
 
 
        public string JibengongziName { get; set; }
        public string BaomifeiName { get; set; }
        public string GongzuobutieName { get; set; }
        public string JiabangongziName { get; set; }
        public string ShebaoName { get; set; }
        public string DianhuabutieName { get; set; }
        public string QuanqinjiangName { get; set; }
        public string JiaotngbutieName { get; set; }
        public string JixiaotichengName { get; set; }
        public string JiangjinName { get; set; }
        public string BufagongziName { get; set; }
        public string ShebaokouName { get; set; }
        public string GeshuiName { get; set; }
        public string DianhuafeiName { get; set; }
        public string QueqinName { get; set; }
        public string FakuanName { get; set; }
        public string PeichangName { get; set; }
        public string JiucuoName { get; set; }
        public string DaozhanggongziName { get; set; }
        public string YufagongziName { get; set; }
        public string YufagongzihejiName { get; set; }
 
 
        public string Islock { get; set; }
 
        public string IslockChs { get
            {
                string str = "";
                switch(Islock)
                {
                    case "D":
                        str = "未确认";
                        break;
 
                    case "H":
                        str = "已核准";
                        break;
 
                    case "S":
                        str = "申诉";
                        break;
 
                    case "Q":
                        str = "已确认";
                        break;
                }
                return str;
            }
        }
 
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
 
        public string reason { get; set; }
        public decimal amount { get; set; }
        public string basis { get; set; }
 
    }
 
    public partial class HrSalaryDTOSearch : SearchEntity
    {
        public string searchDate { get; set; }
        public string YearMonth { get; set; }
        public string Usernumber { get; set; }
        public string DeptId { get; set; }
        public string UserName { get; set; }
        
    }
}