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; }
///
/// 巡检内容分组ID
///
public Guid G_ContentGroupCode { get; set; }
///
/// 巡检内容ID
///
public Guid G_ContentCode { get; set; }
public string C_ContentGroupName { get; set; }
public string C_ContentName { get; set; }
}
}