项目功能开发

This commit is contained in:
冯辉
2026-07-06 21:12:53 +08:00
parent 734c91eea1
commit 048e417ab5
12 changed files with 693 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.cms.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.cms.domain.Project;
/**
* 项目管理 Mapper 接口
*
* @author shz
* @date 2025-07-06
*/
public interface ProjectMapper extends BaseMapper<Project>
{
}