提交 | 用户 | 时间
|
e41062
|
1 |
package com.iailab.module.data.ind.item.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
|
4 |
import com.iailab.module.data.ind.item.entity.IndItemAtomEntity; |
cf757d
|
5 |
import com.iailab.module.data.ind.item.vo.IndItemAtomVO; |
e41062
|
6 |
|
潘 |
7 |
/** |
|
8 |
* @author PanZhibao |
|
9 |
* @Description |
|
10 |
* @createTime 2024年09月11日 |
|
11 |
*/ |
|
12 |
public interface IndItemAtomService extends BaseService<IndItemAtomEntity> { |
68413a
|
13 |
|
cf757d
|
14 |
IndItemAtomVO getByItemId(String itemId); |
68413a
|
15 |
|
cf757d
|
16 |
IndItemAtomVO get(String id); |
68413a
|
17 |
|
J |
18 |
void deleteByItemId(String itemId); |
e41062
|
19 |
} |