1234567891011121314151617181920212223 |
- using SqlSugar;
- using System;
- namespace Uninpho.DBOperation.Model
- {
- public class T_glanalysis_account
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public int Id { get; set; }
- public string Xianlu { get; set; }
- public string Chezhan { get; set; }
- public string Time { get; set; }
- public string Filename { get; set; }
- public int Curvetype { get; set; }
- public decimal Totalwork { get; set; }
- public decimal Changerate { get; set; }
- public decimal Offsetvalue { get; set; }
- public int Curvenumber { get; set; }
- public decimal Powervariance { get; set; }
- public int Directionalmarker { get; set; }
- }
- }
|