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.

67 lines
1.6 KiB
C#

2 years ago
using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Serializable]
public class SapPtInterface
{
[Column("MATNR")]
[DisplayName(" ")]
public string Matnr { get; set; }
[Column("MAKTX")]
[DisplayName(" ")]
public string Maktx { get; set; }
[Column("MTART")]
[DisplayName("Z030原材料、Z010成品、Z020:半成品、Z040:转手件、Z050:售后服务件、Z060:支给件、Z090:间接物料")]
public string Mtart { get; set; }
[Column("MTBEZ")]
[DisplayName(" ")]
public string Mtbez { get; set; }
[Column("MATKL")]
[DisplayName(" ")]
public string Matkl { get; set; }
[Column("WGBEZ")]
[DisplayName(" ")]
public string Wgbez { get; set; }
[Column("MEINS")]
[DisplayName(" ")]
public string Meins { get; set; }
[Column("MAABC")]
[DisplayName(" ")]
public string Maabc { get; set; }
[Column("BSTRF")]
[DisplayName(" ")]
public decimal Bstrf { get; set; }
[Column("WERKS")]
[DisplayName(" ")]
public string Werks { get; set; }
[Column("LVORM")]
[DisplayName(" ")]
public string Lvorm { get; set; }
[Column("SPART")]
[DisplayName(" ")]
public string Spart { get; set; }
[Column("ZZPPMATNR")]
[DisplayName(" ")]
public string Zzppmatnr { get; set; }
}
}