1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
- {
- public class AttachmentView
- {
- 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; }
- public string FileTypeName { get; set; }
- }
- }
|