12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TispContentGroupItemViewModel : BaseViewModel
- {
- public Guid G_ID { get; set; }
- /// <summary>
- /// 巡检内容分组ID
- /// </summary>
- public Guid G_ContentGroupCode { get; set; }
- /// <summary>
- /// 巡检内容ID
- /// </summary>
- public Guid G_ContentCode { get; set; }
- public string C_ContentGroupName { get; set; }
- public string C_ContentName { get; set; }
- }
- }
|