using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model.Monitor { /// /// 分析参数 /// public class AnalyseParameters : JsonModel { /// /// 公式类型 /// public string FormulaType { get; set; } /// /// 公式参数 /// public string FormulaParas { get; set; } } }