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.

39 lines
843 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Serializable]
public class SapCuInterface
{
[Column("KUNNR")]
[DisplayName(" ")]
public string Kunnr { 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; }
}
}