using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 泵站调度 /// public class StationDispatchInput { /// /// 支线类型:1-长兴支线 2、3。。。预留,待定义 /// public long type { get; set; } /// /// 水厂列表 /// public List factory { get; set; } } }