ISceneMarkShapeService.java 436 B

123456789101112131415
  1. package com.fdkankan.contro.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.fdkankan.contro.entity.SceneMarkShape;
  4. /**
  5. * Created by Xiewj on 2021/11/23 0026 10:14
  6. */
  7. public interface ISceneMarkShapeService extends IService<SceneMarkShape> {
  8. SceneMarkShape findByNumAndImagePathAndType(String num, String imagePath,Integer type);
  9. SceneMarkShape findByNumAndType(String num,Integer type);
  10. }