//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace CK.SCP.Models.WmsEntity { using System; using System.Collections.Generic; public partial class TB_ATTACHMENT { public int UID { get; set; } public string OriginalFileName { get; set; } public string FilePath { get; set; } public string FileUrl { get; set; } public string FolderName { get; set; } public string FileName { get; set; } public long FileSize { get; set; } public string FileType { get; set; } public Nullable Type { get; set; } public Nullable FileStoreMode { get; set; } public string Creator { get; set; } public Nullable CreateTime { get; set; } public string ModifiedBy { get; set; } public Nullable ModifiedTime { get; set; } public Nullable IsDeleted { get; set; } public Nullable MainId { get; set; } public byte[] FileContent { get; set; } } }