This commit is contained in:
cwchen 2024-07-23 09:52:00 +08:00
parent 27469e94ce
commit b410244ca6
5 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package com.bonus.aqgqj.basis.controller;
import com.bonus.aqgqj.basis.service.ExamineService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
/**
* @className:ExamineController
* @author:cwchen
* @date:2024-07-23-9:47
* @version:1.0
* @description:审查-controller
*/
@RestController
@RequestMapping("/examine/")
@Slf4j
public class ExamineController {
@Resource(name = "ExamineService")
private ExamineService service;
}

View File

@ -0,0 +1,14 @@
package com.bonus.aqgqj.basis.dao;
import org.springframework.stereotype.Repository;
/**
* @className:ExamineMapper
* @author:cwchen
* @date:2024-07-23-9:48
* @version:1.0
* @description:审查-mapper
*/
@Repository(value = "ExamineMapper")
public interface ExamineMapper {
}

View File

@ -0,0 +1,11 @@
package com.bonus.aqgqj.basis.service;
/**
* @className:ExamineService
* @author:cwchen
* @date:2024-07-23-9:47
* @version:1.0
* @description:审查-service
*/
public interface ExamineService {
}

View File

@ -0,0 +1,23 @@
package com.bonus.aqgqj.basis.service.impl;
import com.bonus.aqgqj.basis.dao.ExamineMapper;
import com.bonus.aqgqj.basis.service.ExamineService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
/**
* @className:ExamineServiceImpl
* @author:cwchen
* @date:2024-07-23-9:47
* @version:1.0
* @description:审查-impl
*/
@Service(value = "ExamineService")
@Slf4j
public class ExamineServiceImpl implements ExamineService {
@Resource(name = "ExamineMapper")
private ExamineMapper mapper;
}

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.bonus.aqgqj.basis.dao.ExamineMapper">
</mapper>