using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_check_order_detail_log")] [Serializable] public class GCheckOrderDetailLog : BaseEntity { [Column("ruid")] [DisplayName(" ")] public long Ruid { get; set; } [Column("chk_ord_det_id")] [DisplayName(" ")] public long? ChkOrdDetId { get; set; } [Column("log_type")] [DisplayName(" ")] public int LogType { get; set; } [Column("log_content")] [DisplayName(" ")] public string LogContent { get; set; } [Column("timesamp")] [DisplayName(" ")] public DateTime? Timesamp { get; set; } } }