代码格式化

This commit is contained in:
none
2023-04-07 10:03:45 +08:00
parent fc8ff14a24
commit f437b3ad4d
252 changed files with 7467 additions and 5770 deletions

View File

@@ -1,20 +1,19 @@
package xyz.playedu.api.mapper;
import org.apache.ibatis.annotations.Mapper;
import xyz.playedu.api.domain.AdminLog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author tengteng
* @description 针对表【admin_logs】的数据库操作Mapper
* @createDate 2023-02-17 15:40:31
* @Entity xyz.playedu.api.domain.AdminLog
*/
@Mapper
public interface AdminLogMapper extends BaseMapper<AdminLog> {
}
/**
* This file is part of the PlayEdu.
* (c) 杭州白书科技有限公司
*/
package xyz.playedu.api.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import xyz.playedu.api.domain.AdminLog;
/**
* @author tengteng
* @description 针对表【admin_logs】的数据库操作Mapper
* @createDate 2023-02-17 15:40:31 @Entity xyz.playedu.api.domain.AdminLog
*/
@Mapper
public interface AdminLogMapper extends BaseMapper<AdminLog> {}