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#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("OQ")]
[Serializable]
public class Oq : BaseEntity
{
[Column("SID")]
[DisplayName(" ")]
public string Sid { get; set; }
[Column("TPDESC")]
[DisplayName(" ")]
public string Tpdesc { get; set; }
[Column("CREYMD")]
[DisplayName(" ")]
public string Creymd { get; set; }
[Column("CREHMS")]
[DisplayName(" ")]
public string Crehms { 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; }
}
}