using SqlSugar; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; using System.Xml.Linq; namespace SlnMesnac.Model.domain { [SugarTable("MESToMCS_Material"), TenantAttribute("mcs")] [DataContract(Name = "MESToMCS_Material MCS 物料信息")] public class McsMaterialInfo { /// /// /// [SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)] public string Guid { get; set; } /// /// 机台编号 /// [SugarColumn(ColumnName = "EquipID")] public int EquipId { get; set; } /// /// 机台类型:CWS-小料;MCS-上辅机 /// [SugarColumn(ColumnName = "EquipType")] public string EquipType { get; set; } /// /// 物料代码 /// [SugarColumn(ColumnName = "MatCode")] public string MatCode { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName = "MatName")] public string MatName { get; set; } /// /// 物料条码 /// [SugarColumn(ColumnName = "MatBarcode")] public string MatBarcode { get; set; } /// /// 物料类型编号 /// [SugarColumn(ColumnName = "MatTypeID")] public string MatTypeId { get; set; } /// /// 物料类型 /// [SugarColumn(ColumnName = "MatType")] public string MatType { get; set; } /// /// 物料秤类别 /// [SugarColumn(ColumnName = "ScaleID")] public string ScaleId { get; set; } /// /// 秤名称 /// [SugarColumn(ColumnName = "ScaleName")] public string ScaleName { get; set; } /// /// 胶料类别 /// [SugarColumn(ColumnName = "MatRubType")] public string MatRubType { get; set; } /// /// 小料设备号 /// [SugarColumn(ColumnName = "CWSID")] public string CWSID { get; set; } /// /// 写入时间 /// [SugarColumn(ColumnName = "WriteTime")] public DateTime WriteTime { get; set; } } }