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.
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System.Runtime.Serialization;
|
|
using SqlSugar;
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
{
|
|
[SugarTable("IF_PmtBin2MES"), TenantAttribute("cwss")]
|
|
[DataContract(Name = "CwssBinToMater 小料料仓对应信息")]
|
|
public class CwssBinToMater
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="Equip_Code" ,IsPrimaryKey = true )]
|
|
public string EquipCode { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="Bin_Serial" ,IsPrimaryKey = true )]
|
|
public int BinSerial { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="Material_ID" )]
|
|
public string MaterialId { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="Bin_UseFlag" )]
|
|
public string BinUseflag { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="Write_Time" )]
|
|
public string WriteTime { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="Read_Time" )]
|
|
public string ReadTime { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="RW_Flag" )]
|
|
public int? RwFlag { get; set; }
|
|
}
|
|
} |