t_guanjie_account.cs 582 B

123456789101112131415161718192021
  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_guanjie_account
  10. {
  11. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  12. public string Id { get; set; }
  13. public string Xlsdj { get; set; }
  14. public string Juming { get; set; }
  15. public string Xianming { get; set; }
  16. public string Hangbie { get; set; }
  17. public decimal Qzlc { get; set; }
  18. public decimal Jslc { get; set; }
  19. }
  20. }