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.
77 lines
1.7 KiB
C#
77 lines
1.7 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("SAP_CU")]
|
|
[Serializable]
|
|
public class SapCu : BaseEntity
|
|
{
|
|
[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; }
|
|
|
|
[Column("SID")]
|
|
[DisplayName(" ")]
|
|
public string Sid { get; set; }
|
|
|
|
[Column("RECTIM")]
|
|
[DisplayName(" ")]
|
|
public string Rectim { get; set; }
|
|
|
|
[Column("SYNFLG")]
|
|
[DisplayName(" ")]
|
|
public string Synflg { get; set; }
|
|
|
|
[Column("ERRMSG")]
|
|
[DisplayName(" ")]
|
|
public string ErrMsg { get; set; }
|
|
|
|
[Column("SYNTIM")]
|
|
[DisplayName(" ")]
|
|
public string Syntim { get; set; }
|
|
|
|
[Column("ACTFLG")]
|
|
[DisplayName(" ")]
|
|
public string Actflg { get; set; }
|
|
|
|
[Column("ACTTIM")]
|
|
[DisplayName(" ")]
|
|
public string Acttim { get; set; }
|
|
|
|
[Column("STAFLG")]
|
|
[DisplayName(" ")]
|
|
public string Staflg { get; set; }
|
|
|
|
[Column("SEQ")]
|
|
[DisplayName(" ")]
|
|
public int Seq { get; set; }
|
|
|
|
|
|
}
|
|
}
|