开始处理数据

This commit is contained in:
Kane Wang 2023-03-14 17:38:07 +08:00
parent 893b697d5a
commit 3bedccd4a4
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
/*
* @Author: Kane
* @Date: 2023-03-14 16:38:06
* @LastEditors: Kane
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/ArchievementQueryController.java
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.web.controllers.archievement;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping( "/archievement" )
public class ArchievementQueryController
{
@RequestMapping( "/query_caller_archievement.do" )
public void queryCallerArchievement()
{
}
}