UserSelfAudit.cs 631 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class UserSelfAudit
  8. {
  9. public string Id { get; set; }
  10. public string UserNoApply { get; set; }
  11. public string UserNoInvited { get; set; }
  12. public int Status { get; set; }
  13. public string IsLocked { get; set; }
  14. public string DisplayApply { get; set; }
  15. public string DisplayInvited { get; set; }
  16. public Nullable<System.DateTime> TimeApply { get; set; }
  17. public Nullable<System.DateTime> TimeInvited { get; set; }
  18. }
  19. }