添加增加减少会员余额接口

This commit is contained in:
牛叉闪闪
2024-08-19 11:20:58 +08:00
parent 53fd7e24c0
commit 635625842a
3 changed files with 80 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Map;
/**
* @author lyf
@@ -96,4 +97,11 @@ public class TbShopUserController {
public void rechargeListDownload(HttpServletResponse response, @RequestBody TbShopRechargeListDto criteria) throws IOException {
tbShopUserService.rechargeListDownload(response, criteria);
}
@PostMapping("midfiyAccount")
@ApiOperation("增加扣减会员余额")
public ResponseEntity<Object> midfiyAccount(Map<String,Object> map){
return null;
}
}