| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class UserAvatar
- {
- public string Id { get; set; }
- public string UserNo { get; set; }
- public string FileName { get; set; }
- public string FilePath { get; set; }
- public string FileType { get; set; }
- public string FileNo { get; set; }
- public string IsLocked { get; set; }
- public Nullable<System.DateTime> TimeCreate { get; set; }
- public string Remark { get; set; }
- }
- }
|