shiyunteng
6 天以前 1eb6f4824c270de1a3d0bf766d44f1abb2c7f55d
platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/DeviceTechnicalAgreementController.java
@@ -123,8 +123,8 @@
    * 获取下拉列表
    * @return
    */
   @GetMapping("/getDropdownnList")
   public R<List<DeviceTechnicalAgreemnt>> getDropdownnList() {
      return R.ok(deviceTechnicalAgreementService.list());
   @GetMapping("/getDropdownnList/{deviceId}")
   public R<List<DeviceTechnicalAgreemnt>> getDropdownnList(@PathVariable("deviceId")Long deviceId) {
      return R.ok(deviceTechnicalAgreementService.getDropdownnList(deviceId));
   }
}