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.
52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// 接口对象基类
|
|
/// </summary>
|
|
public class IfBase
|
|
{
|
|
[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("ACTUSR")]
|
|
[DisplayName(" ")]
|
|
public string Actusr { get; set; }
|
|
|
|
[Column("STAFLG")]
|
|
[DisplayName(" ")]
|
|
public string Staflg { get; set; }
|
|
|
|
[Column("SEQ")]
|
|
[DisplayName(" ")]
|
|
public int Seq { get; set; }
|
|
}
|
|
}
|