using SqlSugar; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; namespace SlnMesnac.Model.domain { [SugarTable("record_staff_commute"), TenantAttribute("mes")] [DataContract(Name = "RecordStaffCommute 员工上下班记录")] public class RecordStaffCommute { /// /// /// [SugarColumn(ColumnName = "obj_id", IsPrimaryKey = true, IsIdentity = true)] public int ObjId { get; set; } /// /// 员工id /// [SugarColumn(ColumnName = "staff_id")] public string StaffId { get; set; } /// /// 班组编号 /// [SugarColumn(ColumnName = "team_code")] public string TeamCode { get; set; } /// /// 班次 /// [SugarColumn(ColumnName = "classes")] public string Classes { get; set; } /// /// 上班打卡时间 /// [SugarColumn(ColumnName = "start_work_time")] public string StartWorkTime { get; set; } /// /// 下班打卡时间 /// [SugarColumn(ColumnName = "end_work_time")] public string EndWorkTime { get; set; } /// /// 在班时长率 /// [SugarColumn(ColumnName = "clocking_ratio")] public decimal ClockingRatio { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 是否标识 /// [SugarColumn(ColumnName = "is_flag")] public string IsFlag { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public string CreateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "update_by")] public string UpdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public string UpdateTime { get; set; } /// /// 机台编号 /// [SugarColumn(ColumnName = "machine_code")] public string MachineCode { get; set; } /// /// 工位编号 /// [SugarColumn(ColumnName = "station_code")] public string StationCode { get; set; } } }