1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using SqlSugar;
- namespace Uninpho.DBOperation.Model
- {
- public class T_quekou_account
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public string Id { get; set; }
- public string Qxxh { get; set; }
- public string Xianlu { get; set; }
- public string Chezhan { get; set; }
- public string Dcbh { get; set; }
- public string Zzj { get; set; }
- }
- }
|