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.
141 lines
3.2 KiB
C#
141 lines
3.2 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("SAP_MOVO")]
|
|
[Serializable]
|
|
public class SapMovo : BaseEntity
|
|
{
|
|
[Column("REFID")]
|
|
[DisplayName(" ")]
|
|
public string Refid { get; set; }
|
|
|
|
[Column("ACTION")]
|
|
[DisplayName(" ")]
|
|
public string Action { get; set; }
|
|
|
|
[Column("ZEILE")]
|
|
[DisplayName(" ")]
|
|
public int 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("UMMAT")]
|
|
[DisplayName(" ")]
|
|
public string Ummat { get; set; }
|
|
|
|
[Column("ERFMG")]
|
|
[DisplayName(" ")]
|
|
public decimal Erfmg { get; set; }
|
|
|
|
[Column("ERFME")]
|
|
[DisplayName(" ")]
|
|
public string Erfme { get; set; }
|
|
|
|
[Column("ZSTAT")]
|
|
[DisplayName(" ")]
|
|
public string Zstat { get; set; }
|
|
|
|
[Column("SOBKZ")]
|
|
[DisplayName(" ")]
|
|
public string Sobkz { get; set; }
|
|
|
|
[Column("HTEXT")]
|
|
[DisplayName(" ")]
|
|
public string Htext { get; set; }
|
|
|
|
[Column("ZZLZT")]
|
|
[DisplayName(" ")]
|
|
public string Zzlzt { get; set; }
|
|
|
|
[Column("SGTXT")]
|
|
[DisplayName(" ")]
|
|
public string Sgtxt { get; set; }
|
|
|
|
[Column("ORDTYP")]
|
|
[DisplayName(" ")]
|
|
public string Ordtyp { get; set; }
|
|
|
|
[Column("PIQTY")]
|
|
[DisplayName(" ")]
|
|
public decimal Piqty { get; set; }
|
|
|
|
[Column("SPQTY")]
|
|
[DisplayName(" ")]
|
|
public decimal Spqty { get; set; }
|
|
|
|
[Column("RECQTY")]
|
|
[DisplayName(" ")]
|
|
public decimal Recqty { get; set; }
|
|
|
|
[Column("TRQTY")]
|
|
[DisplayName(" ")]
|
|
public decimal Trqty { get; set; }
|
|
|
|
[Column("ZZ_CARID")]
|
|
[DisplayName(" ")]
|
|
public string ZzCarid { get; set; }
|
|
|
|
[Column("SID")]
|
|
[DisplayName(" ")]
|
|
public string Sid { get; set; }
|
|
|
|
[Column("RECTIM")]
|
|
[DisplayName(" ")]
|
|
public string Rectim { get; set; }
|
|
|
|
[Column("SYNFLG")]
|
|
[DisplayName(" ")]
|
|
public string Synflg { get; set; }
|
|
|
|
[Column("ERRMSG")]
|
|
[DisplayName(" ")]
|
|
public string ErrMsg { get; set; }
|
|
|
|
[Column("SYNTIM")]
|
|
[DisplayName(" ")]
|
|
public string Syntim { get; set; }
|
|
|
|
[Column("ACTFLG")]
|
|
[DisplayName(" ")]
|
|
public string Actflg { get; set; }
|
|
|
|
[Column("ACTTIM")]
|
|
[DisplayName(" ")]
|
|
public string Acttim { get; set; }
|
|
|
|
[Column("ACTUSR")]
|
|
[DisplayName(" ")]
|
|
public string Actusr { get; set; }
|
|
|
|
[Column("STAFLG")]
|
|
[DisplayName(" ")]
|
|
public string Staflg { get; set; }
|
|
|
|
[Column("SEQ")]
|
|
[DisplayName(" ")]
|
|
public int Seq { get; set; }
|
|
|
|
|
|
}
|
|
}
|