You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
3.7 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SLH.SSDMS.Model.DO
{
///<summary>
///更换记录表
///</summary>
[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;
}
/// <summary>
/// Desc:主键
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int objId { get; set; }
/// <summary>
/// 历史卷号
/// </summary>
public string oldNum { get; set; }
/// <summary>
/// Desc:卷号
/// Default:
/// Nullable:True
/// </summary>
public string lotNum { get; set; }
/// <summary>
/// Desc:生产年
/// Default:
/// Nullable:True
/// </summary>
public string proYear { get; set; }
/// <summary>
/// Desc:生产月
/// Default:
/// Nullable:True
/// </summary>
public string proMonth { get; set; }
/// <summary>
/// Desc:生产机台
/// Default:
/// Nullable:True
/// </summary>
public string proMachine { get; set; }
/// <summary>
/// Desc:带强
/// Default:
/// Nullable:True
/// </summary>
public string beltStrength { get; set; }
/// <summary>
/// Desc:带宽
/// Default:
/// Nullable:True
/// </summary>
public string beltWidth { get; set; }
/// <summary>
/// Desc:上胶厚度
/// Default:
/// Nullable:True
/// </summary>
public string upGlueThick { get; set; }
/// <summary>
/// Desc:连接符
/// Default:
/// Nullable:True
/// </summary>
public string unionSymbol { get; set; }
/// <summary>
/// Desc:下胶厚度
/// Default:
/// Nullable:True
/// </summary>
public string downGlueThick { get; set; }
/// <summary>
/// Desc:盖胶级别
/// Default:
/// Nullable:True
/// </summary>
public string coverGlueLevel { get; set; }
/// <summary>
/// 更换时间
/// </summary>
public DateTime changeTime { get; set; }
/// <summary>
/// 运行里程
/// </summary>
public int runDistance { get; set; }
/// <summary>
/// 运行时长
/// </summary>
public decimal runTime { get; set; }
/// <summary>
/// 旧胶带UUID
/// </summary>
public string oldUUID { get; set; }
}
}