public ActionResult AddCustomerEquipmentSpec(string guid, string type, string code, string unit)
        {
            dynamic data = new System.Dynamic.ExpandoObject();
            var     equ  = _EquipmentSpecRepos.GetEquipmentSpec();

            data.equ  = equ;
            data.code = code;
            var tip = _StandardTipRepos.GetStandardTip();

            data.tip  = tip;
            data.unit = unit;
            data.one  = new Entities::Models.CustomerEquipmentSpec();

            data.guid = guid;
            data.type = type;

            #region 设备参数库
            var list = _EquipmentKeyParameterLibRepos.GetEquipmentKeyParameterLib("设备");
            data.list = list;
            #endregion 设备参数库


            return(PartialView(data));
        }