TispContentGroupItemViewModel.cs 639 B

12345678910111213141516171819202122232425
  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 TispContentGroupItemViewModel : BaseViewModel
  9. {
  10. public Guid G_ID { get; set; }
  11. /// <summary>
  12. /// 巡检内容分组ID
  13. /// </summary>
  14. public Guid G_ContentGroupCode { get; set; }
  15. /// <summary>
  16. /// 巡检内容ID
  17. /// </summary>
  18. public Guid G_ContentCode { get; set; }
  19. public string C_ContentGroupName { get; set; }
  20. public string C_ContentName { get; set; }
  21. }
  22. }