SysFile.cs 624 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class SysFile
  6. {
  7. public long Id { get; set; }
  8. public string FileName { get; set; }
  9. public string BucketName { get; set; }
  10. public string Original { get; set; }
  11. public string Type { get; set; }
  12. public long? FileSize { get; set; }
  13. public string CreateBy { get; set; }
  14. public string UpdateBy { get; set; }
  15. public DateTime? CreateTime { get; set; }
  16. public DateTime? UpdateTime { get; set; }
  17. public string DelFlag { get; set; }
  18. }
  19. }