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; } } /// /// 工资申诉记录 /// [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; } } }