AttachmentView.cs 584 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
  5. {
  6. public class AttachmentView
  7. {
  8. public Guid AttachmentId { get; set; }
  9. public string Name { get; set; }
  10. public string Suffix { get; set; }
  11. public string Url { get; set; }
  12. public int? Type { get; set; }
  13. public Guid? ReferenceId { get; set; }
  14. public Guid? CreateUserId { get; set; }
  15. public DateTime? CreateTime { get; set; }
  16. public string FileTypeName { get; set; }
  17. }
  18. }