T_qkanalysis_account.cs 628 B

123456789101112131415161718192021
  1. using SqlSugar;
  2. using System;
  3. namespace Uninpho.DBOperation.Model
  4. {
  5. public class T_qkanalysis_account
  6. {
  7. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  8. public int Id { get; set; }
  9. public string Xianlu { get; set; }
  10. public string Chezhan { get; set; }
  11. public string Time { get; set; }
  12. public string Filename { get; set; }
  13. public int Gaptype { get; set; }
  14. public decimal Movechange { get; set; }
  15. public decimal Change { get; set; }
  16. public decimal Passchange { get; set; }
  17. public int Gapnumber { get; set; }
  18. }
  19. }