T_gonglv_account.cs 492 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using SqlSugar;
  7. namespace Uninpho.DBOperation.Model
  8. {
  9. public class T_gonglv_account
  10. {
  11. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  12. public string Id { get; set; }
  13. public string Qxxh { get; set; }
  14. public string Xianlu { get; set; }
  15. public string Chezhan { get; set; }
  16. public string Dcbh { get; set; }
  17. }
  18. }