系统日志

This commit is contained in:
cwchen 2024-02-28 14:04:50 +08:00
parent 162df48666
commit 60ac3a5fed
5 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.securitycontrol.system.base.controller;
/**
* @authorcwchen
* @date2024-02-28-14:01
* @version1.0
* @description系统日志
*/
public class SysLogController {
}

View File

@ -0,0 +1,10 @@
package com.securitycontrol.system.base.mapper;
/**
* @authorcwchen
* @date2024-02-28-14:03
* @version1.0
* @description系统日志-数据库访问层
*/
public interface ISysLogMapper {
}

View File

@ -0,0 +1,10 @@
package com.securitycontrol.system.base.service;
/**
* @authorcwchen
* @date2024-02-28-14:01
* @version1.0
* @description系统日志-业务层
*/
public class ISysLogService {
}

View File

@ -0,0 +1,10 @@
package com.securitycontrol.system.base.service.impl;
/**
* @authorcwchen
* @date2024-02-28-14:02
* @version1.0
* @description系统日志-业务逻辑层
*/
public class SysLogServiceImpl {
}

View File

@ -0,0 +1,5 @@
<?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.securitycontrol.system.base.mapper.ISysLogMapper">
</mapper>