ComplianceServer/code/Hg.Core.Entity/WX_SZZYORDER_EXTEND.cs

27 lines
737 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("wx_szzyorder_extend")]
public partial class WX_SZZYORDER_EXTEND
{
[Key]
public int ORDERID { get; set; }
[StringLength(50)]
public string? RESID { get; set; }
public HGCheckStatus? CHECKSTATUS { get; set; }
public DateTime? CHECKTIME { get; set; }
public int? EID { get; set; }
public string? ENAME { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? UTIME { get; set; }
public int? CHECKRANK { get; set; }
public string? CHECKRANKTXT { get; set; }
}
}