st_file.cs 427 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LJLib.DAL.SQL;
  6. namespace JLHHJSvr.DBA.DBModle
  7. {
  8. [PK(new[] { "filemd5" })]
  9. public sealed class st_file
  10. {
  11. public string filemd5 { get; set; }
  12. public byte[] filedata { get; set; }
  13. /// <summary>
  14. /// 后缀,带"."
  15. /// </summary>
  16. public string fileType { get; set; }
  17. }
  18. }