TsysOrganizeUpdateViewModel.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.ViewModel
  7. {
  8. public class TsysOrganizeUpdateViewModel
  9. {
  10. public string C_Name { get; set; }
  11. public string C_SName { get; set; }
  12. //public string C_LName { get; set; }
  13. //public string C_Level { get; set; }
  14. //public Guid? C_ParentCode { get; set; }
  15. public string C_Type { get; set; }
  16. public string C_Phone { get; set; }
  17. public string C_Linker { get; set; }
  18. public string C_GIS { get; set; }
  19. public int? I_Sort { get; set; }
  20. public string C_Remark { get; set; }
  21. public string C_Status { get; set; }
  22. //public string C_Number { get; set; }
  23. //public string C_Name { get; set; }
  24. //public int I_Layer { get; set; }
  25. //public int I_Sort { get; set; }
  26. //public string C_Address { get; set; }
  27. //public string C_GPS { get; set; }
  28. //public string C_Remark { get; set; }
  29. //public string C_ImageUrl { get; set; }
  30. }
  31. }