|
@@ -95,4 +95,16 @@ public class JnbOfficialAuthenticationController extends BaseController {
|
|
public AjaxResult remove(@PathVariable String[] ids) {
|
|
public AjaxResult remove(@PathVariable String[] ids) {
|
|
return toAjax(jnbOfficialAuthenticationService.deleteJnbOfficialAuthenticationByIds(ids));
|
|
return toAjax(jnbOfficialAuthenticationService.deleteJnbOfficialAuthenticationByIds(ids));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * 小程序-官方认证提交
|
|
|
|
+ *
|
|
|
|
+ * @author 韩福成
|
|
|
|
+ * @date 2024/3/4 16:24
|
|
|
|
+ */
|
|
|
|
+ @Log(title = "官方认证", businessType = BusinessType.INSERT)
|
|
|
|
+ @PostMapping("/appletAdd")
|
|
|
|
+ public AjaxResult appletAdd(@RequestBody JnbOfficialAuthentication jnbOfficialAuthentication) {
|
|
|
|
+ return toAjax(jnbOfficialAuthenticationService.insertJnbOfficialAuthentication(jnbOfficialAuthentication));
|
|
|
|
+ }
|
|
}
|
|
}
|