using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace VueWebCoreApi.Models.AttendanceSetting { public class DailyWageReport { /// /// id /// public string id { get; set; } /// /// 车间编码 /// public string whshop_code { get; set; } /// /// 打卡日期 /// public string checkindate { get; set; } /// /// 打卡人员 /// public string usercode { get; set; } /// /// 工作时长(小时) /// public string workcount { get; set; } /// /// 计时工价(元/小时) /// public string workprice { get; set; } /// /// 加班时长(小时) /// public string overcount { get; set; } /// /// 加班工价(元/小时) /// public string overprice { get; set; } /// /// 扣除时长(小时) /// public string deductcount { get; set; } /// /// 扣除薪资(元) /// public string deductmoney { get; set; } /// /// 计时工资(元) /// public string timimoney { get; set; } } }