| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class ViewUserSelfAudit
- {
- 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<System.DateTime> TimeApply { get; set; }
- public Nullable<System.DateTime> TimeInvited { get; set; }
- public string Id { get; set; }
- public string NameApply { get; set; }
- public string NameInvited { get; set; }
- public string MobileApply { get; set; }
- public string MobileInvited { get; set; }
- public string PathApply { get; set; }
- public string PathInvited { get; set; }
- }
- }
|