DrawLotsScenesService.java
631 Bytes
package com.subsidy.service;
import com.subsidy.model.DrawLotsScenesDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.subsidy.vo.group.AllMatchScenesVO;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author Tuyp
* @since 2025-12-10
*/
public interface DrawLotsScenesService extends IService<DrawLotsScenesDO> {
List<AllMatchScenesVO> allMatchScenes(DrawLotsScenesDO drawLotsScenesDO);
String addMatchScene(DrawLotsScenesDO drawLotsScenesDO);
String updateMatchScene(DrawLotsScenesDO drawLotsScenesDO);
String deleteMatchScene(DrawLotsScenesDO drawLotsScenesDO);
}