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.
35 lines
743 B
C#
35 lines
743 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SapDifoInterface
|
|
{
|
|
[Column("WERKS")]
|
|
[DisplayName(" ")]
|
|
public string Werks { get; set; }
|
|
|
|
[Column("IBLNR")]
|
|
[DisplayName(" ")]
|
|
public string Iblnr { get; set; }
|
|
|
|
[Column("ZEILI")]
|
|
[DisplayName(" ")]
|
|
public int Zeili { get; set; }
|
|
|
|
[Column("ZTZBS")]
|
|
[DisplayName(" ")]
|
|
public string Ztzbs { get; set; }
|
|
|
|
[Column("GJAHR")]
|
|
[DisplayName(" ")]
|
|
public int Gjahr { get; set; }
|
|
|
|
}
|
|
}
|