T_glanalysis_account.cs 732 B

1234567891011121314151617181920212223
  1. using SqlSugar;
  2. using System;
  3. namespace Uninpho.DBOperation.Model
  4. {
  5. public class T_glanalysis_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 Curvetype { get; set; }
  14. public decimal Totalwork { get; set; }
  15. public decimal Changerate { get; set; }
  16. public decimal Offsetvalue { get; set; }
  17. public int Curvenumber { get; set; }
  18. public decimal Powervariance { get; set; }
  19. public int Directionalmarker { get; set; }
  20. }
  21. }