username@email.com
2023-12-11 72e4a4d81cb1b9776ffb7287e0c5ed67592eda8b
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
#nullable disable
 
namespace zhengcaioa.Models
{
    public partial class HrSalary
    {
        public string Id { get; set; }
        public string Userid { get; set; }
        public int Year { get; set; }
        public int Month { 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 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; }
    }
 
    /// <summary>
    /// 工资申诉记录
    /// </summary>
    [Table("t_salary_appeal")]
    public class HrSalaryAppeal
    {
        [Key]
        public string id { get; set; }
 
        public string salary_id { get; set; }
 
        public string reason { get; set; }
 
        public int year { get; set; }
 
        public int month { get; set; }
 
        public decimal amount { get; set; }
 
        public string basis { get; set; }
 
        public string sub_user { get; set; }
       
        public DateTime sub_time { get; set; }
 
        public string chk_user { get; set; }
 
        public DateTime? chk_time { get; set; }
 
        public string chk_result { get; set; }
 
        public string status { get; set; }
 
        public string createrName { get; set; }
        public string tittle { get; set; }
        public string shenpi_status { get; set; }
    }
 
    public class HrSalaryAppealDTO : HrSalaryAppeal
    {
        public string Step { get; set; }
 
        public string Tongguojujue { get; set; }
 
        public string Content { get; set; }
 
    }
}