using System; using System.Collections.Generic; using System.Linq; using System.Text; using LJLib.DAL.SQL; namespace JLHHJSvr.DBA.DBModle { [PK(new[] { "filemd5" })] public sealed class st_file { public string filemd5 { get; set; } public byte[] filedata { get; set; } /// /// 后缀,带"." /// public string fileType { get; set; } } }