using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model.Monitor { /// /// 常量计算公式参数 /// public class ConstCalculationFormulaParas : JsonModel { /// /// 常量 /// public string Value { get; set; } /// /// 计算 /// public bool Calculate(out string value) { value = this.Value; return true; } } }