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_ChangeRecord")]
public partial class Base_ChangeRecord
{
public Base_ChangeRecord()
{
}
public Base_ChangeRecord(string lotNum, string proYear, string proMonth, string proMachine,
string beltStrength, string beltWidth, string upGlueThick,
string unionSymbol, string downGlueThick, string coverGlueLevel, string oldUUID)
{
this.lotNum = lotNum;
this.proYear = proYear;
this.proMonth = proMonth;
this.proMachine = proMachine;
this.beltStrength = beltStrength;
this.beltWidth = beltWidth;
this.upGlueThick = upGlueThick;
this.unionSymbol = unionSymbol;
this.downGlueThick = downGlueThick;
this.coverGlueLevel = coverGlueLevel;
this.oldUUID = oldUUID;
}
///
/// Desc:主键
/// Default:
/// Nullable:True
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int objId { get; set; }
///
/// 历史卷号
///
public string oldNum { 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 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 DateTime changeTime { get; set; }
///
/// 运行里程
///
public int runDistance { get; set; }
///
/// 运行时长
///
public decimal runTime { get; set; }
///
/// 旧胶带UUID
///
public string oldUUID { get; set; }
}
}