using cylsg.Core; using cylsg.Core.Attributes; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cylsg.Model.OrderModel { /// /// 打卡记录表 /// [Description("打卡记录表")] [CoderFirst] public class OrderBiddingDetailCheck : BaseModel { /// /// 打卡记录表Id /// [SugarColumn(ColumnDescription = "打卡记录表Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工人工作明细表Id /// [SugarColumn(ColumnDescription = "工人工作明细表Id")] public int OrderBiddingDetailId { get; set; } /// /// 打卡照片 /// [SugarColumn(ColumnDescription = "打卡照片", ColumnDataType = "nvarchar(500)", IsNullable = true)] public string CheckPhoto { get; set; } /// /// 打卡时间 /// [SugarColumn(ColumnDescription = "打卡时间", IsNullable = true)] public DateTime? Checktime { get; set; } } }