username@email.com
2021-06-21 0f5218bb8ed4ad8fa9b8b2f089efd624dc6e9f07
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
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 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? 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? 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 RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
    }
 
    public partial class HrSalaryDTOSearch : SearchEntity
    {
        public string YearMonth { get; set; }
        public string Usernumber { get; set; }
        public string DeptId { get; set; }
        public string UserName { get; set; }
        
    }
}