using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加泵曲线映射 /// public class AddPumpCurveMappingInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 泵标识 /// public long PumpID { get; set; } /// /// 曲线标识 /// public long CurveID { get; set; } /// /// 别名 /// public string OtherName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } }