12345678910111213141516171819 |
- 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; }
- /// <summary>
- /// 后缀,带"."
- /// </summary>
- public string fileType { get; set; }
- }
- }
|