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.
38 lines
842 B
C#
38 lines
842 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SapSuInterface
|
|
{
|
|
[Column("LIFNR")]
|
|
[DisplayName(" ")]
|
|
public string LIFNR { get; set; }
|
|
|
|
[Column("NAME1")]
|
|
[DisplayName(" ")]
|
|
public string NAME1 { get; set; }
|
|
|
|
[Column("STRAS")]
|
|
[DisplayName(" ")]
|
|
public string STRAS { get; set; }
|
|
|
|
[Column("TELF1")]
|
|
[DisplayName(" ")]
|
|
public string TELF1 { get; set; }
|
|
|
|
[Column("PSTL2")]
|
|
[DisplayName(" ")]
|
|
public string PSTL2 { get; set; }
|
|
|
|
[Column("NODEL")]
|
|
[DisplayName(" ")]
|
|
public string NODEL { get; set; }
|
|
}
|
|
}
|