Compare commits

...

2 Commits

Author SHA1 Message Date
yyb
d657598d59 update m2pool 只读页面表新增状态字段查询 2026-01-29 14:35:48 +08:00
yyb
10b9a3cc6d update m2pool 2026-01-29 14:29:46 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ public class ManageUserController {
return manageUserService.deleteUserAccount(coinVo); return manageUserService.deleteUserAccount(coinVo);
} }
@PostMapping("/deleteUserAccount") @PostMapping("/addUserAccount")
@ApiOperation(value = "管理系统:重新上架已下架币种--把以前币种状态设置为5下架的改为 0") @ApiOperation(value = "管理系统:重新上架已下架币种--把以前币种状态设置为5下架的改为 0")
public R<String> addUserAccount(@RequestBody CoinVo coinVo){ public R<String> addUserAccount(@RequestBody CoinVo coinVo){
return manageUserService.addUserAccount(coinVo); return manageUserService.addUserAccount(coinVo);

View File

@@ -266,7 +266,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from from
user_page_info user_page_info
where where
`user` =#{user} `user` =#{user} and status = 0
order by coin,create_time desc order by coin,create_time desc
</select> </select>