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.
49 lines
1.0 KiB
C#
49 lines
1.0 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("IQ")]
|
|
[Serializable]
|
|
public class Iq : BaseEntity
|
|
{
|
|
[Column("SID")]
|
|
[DisplayName(" ")]
|
|
public string Sid { get; set; }
|
|
|
|
[Column("TPDESC")]
|
|
[DisplayName(" ")]
|
|
public string Tpdesc { get; set; }
|
|
|
|
[Column("RECYMD")]
|
|
[DisplayName(" ")]
|
|
public string Recymd { get; set; }
|
|
|
|
[Column("RECHMS")]
|
|
[DisplayName(" ")]
|
|
public string Rechms { get; set; }
|
|
|
|
[Column("XMLCON")]
|
|
[DisplayName(" ")]
|
|
public string Xmlcon { get; set; }
|
|
|
|
[Column("ACTFLG")]
|
|
[DisplayName(" ")]
|
|
public string Actflg { get; set; }
|
|
|
|
[Column("ACTYMD")]
|
|
[DisplayName(" ")]
|
|
public string Actymd { get; set; }
|
|
|
|
[Column("ACTHMS")]
|
|
[DisplayName(" ")]
|
|
public string Acthms { get; set; }
|
|
|
|
|
|
}
|
|
}
|