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.

68 lines
1.6 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("MES_MOVTRN")]
[Serializable]
public class MesMovtrn : IfBase
{
[Column("WERKS")]
[DisplayName(" ")]
public string Werks { get; set; }
[Column("MATNRLNR")]
[DisplayName(" ")]
public string Matnrlnr { get; set; }
[Column("LMNGA")]
[DisplayName(" ")]
public decimal Lmnga { get; set; }
[Column("GMEIN")]
[DisplayName(" ")]
public string Gmein { get; set; }
[Column("MDV01")]
[DisplayName(" ")]
public string Mdv01 { get; set; }
[Column("ALORT")]
[DisplayName(" ")]
public string Alort { get; set; }
[Column("MATNR")]
[DisplayName(" ")]
public string Matnr { get; set; }
[Column("ENTRY_QNT")]
[DisplayName(" ")]
public decimal EntryQnt { get; set; }
[Column("ENTRY_UOM")]
[DisplayName(" ")]
public string EntryUom { get; set; }
[Column("STGE_LOC")]
[DisplayName(" ")]
public string StgeLoc { get; set; }
[Column("BOMUPDATE")]
[DisplayName(" ")]
public string Bomupdate { get; set; }
[Column("POSTDATE")]
[DisplayName(" ")]
public string Postdate { get; set; }
[Column("POSTTIME")]
[DisplayName(" ")]
public string Posttime { get; set; }
}
}