T_file_account.cs 808 B

12345678910111213141516171819202122232425
  1. using SqlSugar;
  2. using System;
  3. namespace Uninpho.DBOperation.Model
  4. {
  5. public class T_file_account
  6. {
  7. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  8. public int Id { get; set; }
  9. public string Xlm { get; set; }
  10. public string Hangbie { get; set; }
  11. public string Srlj { get; set; }
  12. public string Xlbh { get; set; }
  13. public string Fangxiang { get; set; }
  14. public string Zjlc { get; set; }
  15. public string Jcsj { get; set; }
  16. public string Jccxx { get; set; }
  17. public string Yswjm { get; set; }
  18. public string Daxiao { get; set; }
  19. public string Rwzt { get; set; }
  20. public string Wjzt { get; set; }
  21. public string Remark { get; set; }
  22. public string Houzhui { get; set; }
  23. }
  24. }