1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.iailab.module.any.service;
|
| import com.iailab.framework.common.service.BaseService;
| import com.iailab.module.any.dto.AnySugLibDTO;
| import com.iailab.module.any.entity.AnySugLibEntity;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2024年06月16日
| */
| public interface AnySugLibService extends BaseService<AnySugLibEntity> {
|
| AnySugLibDTO get(String type, String code, String condition);
| }
|
|