SysAttachment.cs 517 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysAttachment
  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. }
  17. }