/// <summary>
        /// 添加自定义项目的发送命令
        /// </summary>
        /// <param name="p_objCheckItemCustomOrderVO"></param>
        /// <returns></returns>
        public long m_lngInsertCheckItemCustomOrder(clsLisCheckItemCustomOrder p_objCheckItemCustomOrderVO)
        {
            long lngRes = 0;
            clsMK3DeviceCommunications objSvc =
                (clsMK3DeviceCommunications)com.digitalwave.iCare.common.clsObjectGenerator.objCreatorObjectByType(typeof(clsMK3DeviceCommunications));

            lngRes = objSvc.m_lngInsertCheckItemCustomOrder(objPrincipal, p_objCheckItemCustomOrderVO);
            return(lngRes);
        }
        /// <summary>
        /// 删除自定义项目的命令
        /// </summary>
        /// <param name="p_strCheckItemID"></param>
        /// <returns></returns>
        public long m_lngDeleteCheckItemCustomOrder(string p_strCheckItemID)
        {
            long lngRes = 0;
            clsMK3DeviceCommunications objSvc =
                (clsMK3DeviceCommunications)com.digitalwave.iCare.common.clsObjectGenerator.objCreatorObjectByType(typeof(clsMK3DeviceCommunications));

            lngRes = objSvc.m_lngDeleteCheckItemCustomOrder(objPrincipal, p_strCheckItemID);
            return(lngRes);
        }
        /// <summary>
        /// 获取自定义项目的发送命令
        /// </summary>
        /// <param name="p_strCheckItemID"></param>
        /// <param name="p_objCheckItemCustomOrderArr"></param>
        /// <returns></returns>
        public long m_lngQueryChcekItemCustomOrder(string p_strCheckItemID, out clsLisCheckItemCustomOrder p_objCheckItemCustomOrder)
        {
            p_objCheckItemCustomOrder = null;
            long lngRes = 0;
            clsMK3DeviceCommunications objSvc =
                (clsMK3DeviceCommunications)com.digitalwave.iCare.common.clsObjectGenerator.objCreatorObjectByType(typeof(clsMK3DeviceCommunications));

            lngRes = objSvc.m_lngQueryChcekItemCustomOrder(objPrincipal, p_strCheckItemID, out p_objCheckItemCustomOrder);
            return(lngRes);
        }