rev:新增飞书接口

This commit is contained in:
2023-11-15 13:45:12 +08:00
parent 74e0977658
commit 070adc96e2
3 changed files with 18 additions and 0 deletions

View File

@@ -112,6 +112,14 @@ public class MesToLmsController {
return new ResponseEntity<>(mesToLmsService.cutPlanTransferCancel(jo), HttpStatus.OK);
}
@PostMapping("/sendAuditResult")
@Log("子卷审批结果")
@ApiOperation("子卷审批结果")
@SaIgnore
public ResponseEntity<Object> sendAuditResult(@RequestBody JSONObject jo) {
return new ResponseEntity<>(mesToLmsService.sendAuditResult(jo), HttpStatus.OK);
}

View File

@@ -58,4 +58,6 @@ public interface MesToLmsService {
* 分切计划取消
*/
JSONObject cutPlanTransferCancel(JSONObject param);
JSONObject sendAuditResult(JSONObject param);
}

View File

@@ -1355,4 +1355,12 @@ public class MesToLmsServiceImpl implements MesToLmsService {
log.info("childRollInfoUpdate接口输出参数为-------------------" + result.toString());
return result;
}
@Override
public JSONObject sendAuditResult(JSONObject param) {
String instance_code = param.getString("instance_code");
//0-不通过1-通过;
String result = param.getString("result");
return null;
}
}