using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Zxd.Entity.Zxd { [Table("CMS_QIWEI_POSTLOG")] public partial class CMS_QIWEI_POSTLOG { [Key] public decimal PKID { get; set; } [StringLength(255)] public string? Appid { get; set; } [StringLength(255)] public string? Appuserid { get; set; } [StringLength(255)] public string? Deptid { get; set; } [StringLength(1000)] public string? jsondata { get; set; } public DateTime? ctime { get; set; } public decimal STATUS { get; set; } [StringLength(255)] public string? Reason { get; set; } [StringLength(2000)] public string? CmsData { get; set; } } }