package com.fdkankan.contro.service; import com.baomidou.mybatisplus.extension.service.IService; import com.fdkankan.contro.entity.SceneMarkShape; import java.util.List; /** * Created by Xiewj on 2021/11/23 0026 10:14 */ public interface ISceneMarkShapeService extends IService { SceneMarkShape findByNumAndImagePathAndType(String num, String imagePath,Integer type); List findByNumAndType(String num, Integer type); }