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.

76 lines
2.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.Runtime.Serialization;
using SqlSugar;
namespace SlnMesnac.Model.domain
{
[SugarTable("MCSToMES_BinToMater"), TenantAttribute("mcs")]
[DataContract(Name = "McsBinToMater 大料料仓对应信息")]
public class McsBinToMater
{
/// <summary>
///
///</summary>
[SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)]
public string Guid { get; set; }
/// <summary>
/// 机台编号
///</summary>
[SugarColumn(ColumnName = "EquipID")]
public int EquipId { get; set; }
/// <summary>
/// 机台名称
///</summary>
[SugarColumn(ColumnName = "EquipName")]
public string EquipName { get; set; }
/// <summary>
/// 机台类型CWS-小料MCS-上辅机
///</summary>
[SugarColumn(ColumnName = "EquipType")]
public string EquipType { get; set; }
/// <summary>
/// 秤编号
///</summary>
[SugarColumn(ColumnName = "ScaleNum")]
public int ScaleNum { get; set; }
/// <summary>
/// 秤类型
///</summary>
[SugarColumn(ColumnName = "ScaleClass")]
public string ScaleClass { get; set; }
/// <summary>
/// 秤名称
///</summary>
[SugarColumn(ColumnName = "ScaleName")]
public string ScaleName { get; set; }
/// <summary>
/// 罐号
///</summary>
[SugarColumn(ColumnName = "BinNo")]
public int BinNo { get; set; }
/// <summary>
/// 物料代码
///</summary>
[SugarColumn(ColumnName = "MatCode")]
public string MatCode { get; set; }
/// <summary>
/// 物料名称
///</summary>
[SugarColumn(ColumnName = "MatName")]
public string MatName { get; set; }
/// <summary>
/// 使用状态Y-使用中N-未使用
///</summary>
[SugarColumn(ColumnName = "UseYN")]
public string UseYN { get; set; }
}
}