123456789101112131415161718192021222324252627282930313233 |
- using SqlSugar;
- using System;
- namespace Uninpho.DBOperation.Model
- {
- public class T_jgjdistance_table
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public string Id { get; set; }
-
-
-
- public decimal Zch { get; set; }
-
-
-
- public decimal Dcqc { get; set; }
-
-
-
- public decimal Gdjxgjj { get; set; }
-
-
-
-
-
- public int Sudutype { get; set; }
-
-
-
- public string Isnew { get; set; }
- }
- }
|