Helius
2020-12-25 9ee654e9a8e343449509e4aadc4ea2eff1afb921
zq-erp/src/main/java/com/matrix/system/app/action/ApiUsersAction.java
@@ -8,10 +8,7 @@
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
/**
 * @author wzy
@@ -26,7 +23,7 @@
    private AchieveNewService achieveNewService;
    @ApiOperation(value = "获取用户业绩接口 type 1-今日 2-昨天 3-本月 4-上月")
    @ApiOperation(value = "个人中心--获取用户业绩接口 type 1-今日 2-昨天 3-本月 4-上月")
    @ApiResponses({
            @ApiResponse(code = 200, message = "ok", response = UserAchieveVo.class)
    })
@@ -38,5 +35,10 @@
        return ajaxResult;
    }
    @PostMapping(value = "/findBeautician")
    public AjaxResult findBeautician() {
        return null;
    }
}