using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Model
{
    public class TdevWebScadaDevSpotCreateModel
    {
        public string C_Name { get; set; }
        public string C_DevCode { get; set; }
        public string C_ControlID { get; set; }
        public string C_DevSpotCode { get; set; }
        public string C_GroupName { get; set; }
        public string C_UnitName { get; set; }
        public bool IsCalFormula { get; set; }=false;
        public string C_CalFormula { get; set; }
        public string C_Type { get; set; }
        public string C_BoxSpot { get; set; }
        public string C_BoxNo { get; set; }
        public string C_StoreCode { get; set; }
        public int I_Sort { get; set; }
        public string C_Remark { get; set; }
        public string MinValue { get; set; }
        public string MaxValue { get; set; }

        public string FMinValue { get; set; }
        public string FMaxValue { get; set; }

        public string AlarmValue { get; set; }

        public string C_Run { get; set; }

        public string C_Public { get; set; }
        public List<string> boxCodeList { get; set; } = null;

    }
}