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.
69 lines
1.5 KiB
C#
69 lines
1.5 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("WMS_MOVR")]
|
|
[Serializable]
|
|
public class WmsMovr : IfBase
|
|
{
|
|
[Column("ZINSTNO")]
|
|
[DisplayName(" ")]
|
|
public string Zinstno { get; set; }
|
|
|
|
[Column("ZEILE")]
|
|
[DisplayName(" ")]
|
|
public string Zeile { get; set; }
|
|
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("LGORT")]
|
|
[DisplayName(" ")]
|
|
public string Lgort { get; set; }
|
|
|
|
[Column("UMLGO")]
|
|
[DisplayName(" ")]
|
|
public string Umlgo { get; set; }
|
|
|
|
[Column("MATNR")]
|
|
[DisplayName(" ")]
|
|
public string Matnr { get; set; }
|
|
|
|
[Column("ERFMG")]
|
|
[DisplayName(" ")]
|
|
public decimal Erfmg { get; set; }
|
|
|
|
[Column("ERFME")]
|
|
[DisplayName(" ")]
|
|
public string Erfme { get; set; }
|
|
|
|
[Column("ACTION")]
|
|
[DisplayName(" ")]
|
|
public string Action { get; set; }
|
|
|
|
[Column("ZZ_CARID")]
|
|
[DisplayName(" ")]
|
|
public string ZzCarid { get; set; }
|
|
|
|
[Column("ZPOST")]
|
|
[DisplayName(" ")]
|
|
public string Zpost { get; set; }
|
|
|
|
[Column("ZTIME")]
|
|
[DisplayName(" ")]
|
|
public string Ztime { get; set; }
|
|
|
|
[Column("LIFNR")]
|
|
[DisplayName(" ")]
|
|
public string Lifnr { get; set; }
|
|
|
|
|
|
}
|
|
}
|