DrawLotsScenesService.java
637 Bytes
package com.zhongzhi.service;
import com.zhongzhi.model.DrawLotsScenesDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.zhongzhi.vo.project.AllMatchScenesVO;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author DengMin
* @since 2025-06-19
*/
public interface DrawLotsScenesService extends IService<DrawLotsScenesDO> {
List<AllMatchScenesVO> allMatchScenes(DrawLotsScenesDO drawLotsScenesDO);
String addMatchScene(DrawLotsScenesDO drawLotsScenesDO);
String updateMatchScene(DrawLotsScenesDO drawLotsScenesDO);
String deleteMatchScene(DrawLotsScenesDO drawLotsScenesDO);
}