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("SI_TP")]
|
|
[Serializable]
|
|
public class SiTp : BaseEntity
|
|
{
|
|
[Column("TPID")]
|
|
[DisplayName(" ")]
|
|
public int Tpid { get; set; }
|
|
|
|
[Column("TPTYP")]
|
|
[DisplayName(" ")]
|
|
public string Tptyp { get; set; }
|
|
|
|
[Column("PBNO")]
|
|
[DisplayName(" ")]
|
|
public string Pbno { get; set; }
|
|
|
|
[Column("TPNO")]
|
|
[DisplayName(" ")]
|
|
public string Tpno { get; set; }
|
|
|
|
[Column("TPDESC")]
|
|
[DisplayName(" ")]
|
|
public string Tpdesc { get; set; }
|
|
|
|
[Column("MESTAB")]
|
|
[DisplayName(" ")]
|
|
public string Mestab { get; set; }
|
|
|
|
[Column("MESGROP")]
|
|
[DisplayName(" ")]
|
|
public string Mesgrop { get; set; }
|
|
|
|
[Column("MESORD")]
|
|
[DisplayName(" ")]
|
|
public string Mesord { get; set; }
|
|
|
|
[Column("MESPK")]
|
|
[DisplayName(" ")]
|
|
public string Mespk { get; set; }
|
|
|
|
[Column("ACTTYP")]
|
|
[DisplayName(" ")]
|
|
public string Acttyp { get; set; }
|
|
|
|
[Column("ACTDESC")]
|
|
[DisplayName(" ")]
|
|
public string Actdesc { get; set; }
|
|
|
|
[Column("UPDUSR")]
|
|
[DisplayName(" ")]
|
|
public string Updusr { get; set; }
|
|
|
|
[Column("UPDYMD")]
|
|
[DisplayName(" ")]
|
|
public string Updymd { get; set; }
|
|
|
|
[Column("UPDHMS")]
|
|
[DisplayName(" ")]
|
|
public string Updhms { get; set; }
|
|
|
|
[Column("SEQ")]
|
|
[DisplayName(" ")]
|
|
public int Seq { get; set; }
|
|
|
|
|
|
}
|
|
}
|