init
This commit is contained in:
@@ -83,6 +83,15 @@ public class AccountAppController {
|
||||
return R.ok(result);
|
||||
}
|
||||
|
||||
@PostMapping("/wxTrans/apply")
|
||||
@Operation(summary = "处理交换微信")
|
||||
@Log(title = "处理交换微信", businessType = BusinessType.OTHER, isSaveDb = false)
|
||||
public R<Void> applyWxTrans(@RequestBody WxTransDataApplyReq req){
|
||||
req.setUserId(LoginHelper.getUserId());
|
||||
wxTransDataService.apply(req);
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
@PostMapping("/wxTrans/star")
|
||||
@Operation(summary = "发起交换微信")
|
||||
@Log(title = "发起交换微信", businessType = BusinessType.OTHER, isSaveDb = false)
|
||||
@@ -92,6 +101,7 @@ public class AccountAppController {
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
|
||||
@GetMapping("/wxTrans/data/page")
|
||||
@Operation(summary = "查询交换微信数据")
|
||||
@Log(title = "发起交换微信", businessType = BusinessType.OTHER, isSaveDb = false)
|
||||
@@ -111,4 +121,6 @@ public class AccountAppController {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user