tangxu
2023-04-10 7f8ba13a353ed3da5efbbbf623d586428f4bce96
Application/IStation.Application.Bimface/bimface_file_mapping/BimfaceFileMapping_Controller.cs
@@ -122,6 +122,17 @@
            return vm_list;
        }
        /// <summary>
        /// 通过 BelongType  BelongID 判断是否存在
        /// </summary>
        [Route("IsExistByBelongTypeAndBelongID@V1.0")]
        [HttpGet]
        public bool IsExistByBelongTypeAndBelongID([FromQuery][Required] BelongUnderCorpInput input)
        {
            var bol = _service.IsExistByBelongTypeAndBelongID(input.CorpID, input.BelongType, input.BelongID);
            return bol;
        }
        #endregion
        #region Insert
@@ -273,5 +284,8 @@
        }
        #endregion
    }
}