using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class UserSelfAudit { public string Id { get; set; } public string UserNoApply { get; set; } public string UserNoInvited { get; set; } public int Status { get; set; } public string IsLocked { get; set; } public string DisplayApply { get; set; } public string DisplayInvited { get; set; } public Nullable TimeApply { get; set; } public Nullable TimeInvited { get; set; } } }