using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Dto
{
///
///
///
public class ParallelConnectCalcByHeadInput
{
///
///
///
public class MachineDetail
{
///
///
///
public double Frequence { get; set; }
///
///
///
public long MachineID { get; set; }
}
///
///
///
public long CorpID { get; set; }
///
///
///
public long StationID { get; set; }
///
///
///
public double Head { get; set; }
///
///
///
public List MachineList { get; set; }
}
}