app文件管理

This commit is contained in:
2025-07-03 14:07:32 +08:00
parent 3e07891760
commit c3a9f4a365
8 changed files with 81 additions and 10 deletions

View File

@ -0,0 +1,17 @@
package com.fuyuanshen.app.mapper;
import com.fuyuanshen.app.domain.AppOperationVideo;
import com.fuyuanshen.app.domain.vo.AppOperationVideoVo;
import com.fuyuanshen.common.mybatis.core.mapper.BaseMapperPlus;
import org.apache.ibatis.annotations.Mapper;
/**
* 操作视频Mapper接口
*
* @author Lion Li
* @date 2025-07-02
*/
@Mapper
public interface AppFileMapper {
}

View File

@ -0,0 +1,11 @@
package com.fuyuanshen.app.service;
/**
* APP文件管理 业务层
*
* @author Lion Li
* @date 2025-07-02
*/
public interface IAppFileService {
}

View File

@ -0,0 +1,14 @@
package com.fuyuanshen.app.service.impl;
import com.fuyuanshen.app.service.IAppFileService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@RequiredArgsConstructor
@Service
public class AppFileServiceImpl implements IAppFileService {
}

View File

@ -0,0 +1,7 @@
<?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.fuyuanshen.app.mapper.AppFileMapper">
</mapper>