1234567891011121314151617 |
- 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> {
- SceneMarkShape findByNumAndImagePathAndType(String num, String imagePath,Integer type);
- List<SceneMarkShape> findByNumAndType(String num, Integer type);
- }
|