UserAvatar.cs 588 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 UserAvatar
  8. {
  9. public string Id { get; set; }
  10. public string UserNo { get; set; }
  11. public string FileName { get; set; }
  12. public string FilePath { get; set; }
  13. public string FileType { get; set; }
  14. public string FileNo { get; set; }
  15. public string IsLocked { get; set; }
  16. public Nullable<System.DateTime> TimeCreate { get; set; }
  17. public string Remark { get; set; }
  18. }
  19. }