12345678910111213141516171819 |
- package com.fdkankan.download.service;
- import com.fdkankan.download.entity.Camera;
- import com.mybatisflex.core.service.IService;
- import java.util.List;
- /**
- * 相机主表 服务层。
- *
- * @author dsx
- * @since 2023-12-08
- */
- public interface ICameraService extends IService<Camera> {
- List<Camera> listBySnCodeList(List<String> snCodeList);
- }
|