using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace VueWebCoreApi.Models.AttendanceSetting { public class AttendanceSett { /// /// 车间编码 /// public string wkshop_code { get; set; } /// /// 上班时间 /// public string workhouse { get; set; } /// /// 下班时间 /// public string closehouse { get; set; } /// /// 正常上班工价 /// public string workprice { get; set; } /// /// 加班工价 /// public string overprice { get; set; } /// /// 上班打卡有效范围/小时 /// public string uphouse { get; set; } /// /// 下班打开有效范围/小时 /// public string downhouse { get; set; } } }