Kaynağa Gözat

1、调整用户货币数据

yfh 19 saat önce
ebeveyn
işleme
47d07fe20a

+ 2 - 0
fs-user-app/src/main/java/com/fs/app/controller/game/PlayerController.java

@@ -6,6 +6,7 @@ import com.fs.common.core.domain.R;
 import com.fs.his.domain.FsUser;
 import com.fs.his.service.IFsUserService;
 import io.swagger.annotations.ApiOperation;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -15,6 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
 @RequestMapping("/player")
 public class PlayerController {
 
+    @Autowired
     private IFsUserService fsUserService;
 
     @Login