Commit c9375b94 authored by lcl's avatar lcl

add

parent 840c7a32
package com.dsk.web.controller.business;
import com.dsk.common.core.controller.BaseController;
import com.dsk.system.service.IBusinessOverviewService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 项目概览
* @author lcl
* @create 2023/8/14
*/
@Api("项目概览")
@RestController
@RequestMapping("/business/overview")
public class BusinessOverviewController extends BaseController {
@Autowired
private IBusinessOverviewService baseService;
}
package com.dsk.system.service;
/**
* @author lcl
* @create 2023/8/14
*/
public interface IBusinessOverviewService {
}
package com.dsk.system.service.impl;
import com.dsk.system.service.IBusinessOverviewService;
import org.springframework.stereotype.Service;
/**
* @author lcl
* @create 2023/8/14
*/
@Service
public class BusinessOverviewServiceImpl implements IBusinessOverviewService {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment