123456789101112131415161718192021 |
- using SqlSugar;
- using System;
- namespace Uninpho.DBOperation.Model
- {
- public class T_qkanalysis_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 Gaptype { get; set; }
- public decimal Movechange { get; set; }
- public decimal Change { get; set; }
- public decimal Passchange { get; set; }
- public int Gapnumber { get; set; }
-
- }
- }
|