using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class SysAttachFile { public string Id { get; set; } public string FileTitle { get; set; } public string FileName { get; set; } public string FilePath { get; set; } public string FileType { get; set; } public string FileExt { get; set; } public string Description { get; set; } } }