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.
71 lines
1.6 KiB
C#
71 lines
1.6 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SapDspoInterface
|
|
{
|
|
[Column("EBELN")]
|
|
[DisplayName(" ")]
|
|
public string Ebeln { get; set; }
|
|
|
|
[Column("EVRTP")]
|
|
[DisplayName(" ")]
|
|
public int Evrtp { get; set; }
|
|
|
|
[Column("LIFNR")]
|
|
[DisplayName(" ")]
|
|
public string Lifnr { get; set; }
|
|
|
|
[Column("MATNR")]
|
|
[DisplayName(" ")]
|
|
public string Matnr { get; set; }
|
|
|
|
[Column("ZDEV_NUM")]
|
|
[DisplayName(" ")]
|
|
public decimal Zdev_Num { get; set; }
|
|
|
|
[Column("UNIT")]
|
|
[DisplayName(" ")]
|
|
public string Unit { get; set; }
|
|
|
|
[Column("PSTYP")]
|
|
[DisplayName(" ")]
|
|
public string Pstyp { get; set; }
|
|
|
|
[Column("ZDATE")]
|
|
[DisplayName(" ")]
|
|
public string Zdate { get; set; }
|
|
|
|
[Column("ZCJSJ")]
|
|
[DisplayName(" ")]
|
|
public string Zcjsj { get; set; }
|
|
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("LGORT")]
|
|
[DisplayName(" ")]
|
|
public string Lgort { get; set; }
|
|
|
|
[Column("ZSTAS")]
|
|
[DisplayName(" ")]
|
|
public string Zstas { get; set; }
|
|
|
|
[Column("BSTYP")]
|
|
[DisplayName(" ")]
|
|
public string Bstyp { get; set; }
|
|
|
|
[Column("BSTRF")]
|
|
[DisplayName(" ")]
|
|
public decimal Bstrf { get; set; }
|
|
|
|
}
|
|
}
|