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