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_BeltInfo")] public partial class Base_BeltInfo { public Base_BeltInfo() { } public Base_BeltInfo(string lotNum, string proYear, string proMonth, string proMachine, DateTime boardTime) { this.lotNum = lotNum; this.proYear = proYear; this.proMonth = proMonth; this.proMachine = proMachine; this.boardTime = boardTime; } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int objId { get; set; } /// /// Desc:卷号 /// Default: /// Nullable:True /// public string lotNum { get; set; } /// /// Desc:生产年 /// Default: /// Nullable:True /// public string proYear { get; set; } /// /// Desc:生产月 /// Default: /// Nullable:True /// public string proMonth { get; set; } /// /// Desc:生产机台 /// Default: /// Nullable:True /// public string proMachine { get; set; } /// /// Desc:上机时间 /// Default: /// Nullable:True /// public DateTime boardTime { get; set; } /// /// 安装长度 /// public int beltLength { get; set; } /// /// 更换标识 /// public int updateFlag { get; set; } /// /// 运行时长 /// public decimal runTime { get; set; } /// /// Desc:带强 /// Default: /// Nullable:True /// public string beltStrength { get; set; } /// /// Desc:带宽 /// Default: /// Nullable:True /// public string beltWidth { get; set; } /// /// Desc:上胶厚度 /// Default: /// Nullable:True /// public string upGlueThick { get; set; } /// /// Desc:连接符 /// Default: /// Nullable:True /// public string unionSymbol { get; set; } /// /// Desc:下胶厚度 /// Default: /// Nullable:True /// public string downGlueThick { get; set; } /// /// Desc:盖胶级别 /// Default: /// Nullable:True /// public string coverGlueLevel { get; set; } /// /// 首次上机时间 /// public string firstTime { get; set; } public string uuid { get; set; } /// /// 正转时长 /// public int clockwiseTime { get; set; } /// /// 正转里程 /// public int clockwiseDistance { get; set; } /// /// 反转时长 /// public int antiClockwiseTime { get; set; } /// /// 反转里程 /// public int antiClockwiseDistance { get; set; } } }