namespace IStation.Application.SZJT
{
///
///
///
public class StationListGroupMobileDto
{
///
/// id
///
public long ID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 泵站列表
///
public List StationList { get; set; }
}
}