using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SLH.SSDMS.Model.DO { /// /// /// [SugarTable("base_RunRecord")] public partial class Base_RunRecord { public Base_RunRecord() { } public Base_RunRecord(string lotNum, int runTime, int runDistance, DateTime recordTime) { this.lotNum = lotNum; this.runTime = runTime; this.runDistance = runDistance; this.recordTime = recordTime; } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int objId { get; set; } /// /// Desc:卷号 /// Default: /// Nullable:True /// public string lotNum { get; set; } /// /// 开机时间 /// public DateTime startTime { get; set; } /// /// 关机时间 /// public DateTime endTime { get; set; } /// /// Desc:运行时长 /// Default: /// Nullable:True /// public int runTime { get; set; } /// /// Desc:运行距离 /// Default: /// Nullable:True /// public int runDistance { get; set; } /// /// Desc:日期 /// Default: /// Nullable:True /// public DateTime recordTime { get; set; } /// /// Desc:是否启用 /// Default: /// Nullable:True /// public int delete_flag { get; set; } } }