|
@@ -3,6 +3,7 @@ package com.rongwei.bsserver.controller;
|
|
|
|
|
|
import com.rongwei.bscommon.sys.service.ZhcxCommissionCheckBaseInfoDetailService;
|
|
import com.rongwei.bscommon.sys.service.ZhcxCommissionCheckBaseInfoDetailService;
|
|
import com.rongwei.bsentity.domain.ZhcxCommissionCheckBaseInfoDetailDo;
|
|
import com.rongwei.bsentity.domain.ZhcxCommissionCheckBaseInfoDetailDo;
|
|
|
|
+import com.rongwei.bsentity.dto.CommissionCheckChapterNoPulsDTO;
|
|
import com.rongwei.rwcommon.base.R;
|
|
import com.rongwei.rwcommon.base.R;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -32,5 +33,16 @@ public class ZhcxCommissionCheckBaseInfoDetailController {
|
|
service.batchUpdate(list);
|
|
service.batchUpdate(list);
|
|
return R.ok();
|
|
return R.ok();
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 更新试车报告检查内容子表章节号
|
|
|
|
+ * @param list
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/updateChapterNoPuls")
|
|
|
|
+ public R updateChapterNoPuls(@RequestBody List<CommissionCheckChapterNoPulsDTO> list){
|
|
|
|
+ service.batchUpdateChapterNoPuls(list);
|
|
|
|
+ return R.ok();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|