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

39 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("hg_checkquality_source")]
public partial class HG_CheckQualityLogSource
{
[Key]
public int Id { get; set; }
public int? logdetailid { get; set; }
public int? logid { get; set; }
public int? checktype { get; set; }
[StringLength(50)]
public string? appid { get; set; }
[StringLength(50)]
public string? appname { get; set; }
[StringLength(255)]
public string? appuserid { get; set; }
[StringLength(255)]
public string? externaluserid { get; set; }
public int? recordid { get; set; }
public int? eid { get; set; }
public string? ename { get; set; }
public DateTime? ctime { get; set; }
public DateTime? utime { get; set; }
public virtual HG_CheckQualityLogDetail? HG_CheckQualityLogDetail { get; set; }
}
}