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.
63 lines
1.4 KiB
C#
63 lines
1.4 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SapBomInterface
|
|
{
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("MATNR")]
|
|
[DisplayName(" ")]
|
|
public string Matnr { get; set; }
|
|
|
|
[Column("BMENG")]
|
|
[DisplayName(" ")]
|
|
public decimal Bmeng { get; set; }
|
|
|
|
[Column("BMEIN")]
|
|
[DisplayName(" ")]
|
|
public string Bmein { get; set; }
|
|
|
|
[Column("IDNRK")]
|
|
[DisplayName(" ")]
|
|
public string Idnrk { get; set; }
|
|
|
|
[Column("MENGE")]
|
|
[DisplayName(" ")]
|
|
public decimal Menge { get; set; }
|
|
|
|
[Column("MEINS")]
|
|
[DisplayName(" ")]
|
|
public string Meins { get; set; }
|
|
|
|
[Column("DATUV")]
|
|
[DisplayName(" ")]
|
|
public string Datuv { get; set; }
|
|
|
|
[Column("DATUS")]
|
|
[DisplayName(" ")]
|
|
public string Datus { get; set; }
|
|
|
|
[Column("LKENZ")]
|
|
[DisplayName(" ")]
|
|
public string Lkenz { get; set; }
|
|
|
|
[Column("AENNR")]
|
|
[DisplayName(" ")]
|
|
public string Aennr { get; set; }
|
|
|
|
[Column("STLKZ")]
|
|
[DisplayName(" ")]
|
|
public string Stlkz { get; set; }
|
|
|
|
}
|
|
}
|