12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysAttachment
- {
- public Guid AttachmentId { get; set; }
- public string Name { get; set; }
- public string Suffix { get; set; }
- public string Url { get; set; }
- public int? Type { get; set; }
- public Guid? ReferenceId { get; set; }
- public Guid? CreateUserId { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|