添加直播申请管理

This commit is contained in:
sh
2026-06-25 23:48:43 +08:00
parent 6229d39203
commit 1cb6e859cb
6 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.ruoyi.cms.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.cms.domain.liveSteam.LiveApply;
import java.util.List;
/**
* 直播申请Mapper
*
* @author ruoyi
*/
public interface LiveApplyMapper extends BaseMapper<LiveApply> {
List<LiveApply> selectLiveApplyList(LiveApply liveApply);
}