工业互联网平台2.0版本后端代码
潘志宝
2024-11-26 c5fe30af6e6d1a72503d65f59532990f8b7fe070
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.iailab.module.data.ind.item.service;
 
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.data.ind.item.entity.IndItemAtomEntity;
import com.iailab.module.data.ind.item.vo.IndItemAtomVO;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月11日
 */
public interface IndItemAtomService extends BaseService<IndItemAtomEntity> {
 
    IndItemAtomVO getByItemId(String itemId);
 
    IndItemAtomVO get(String id);
 
    void deleteByItemId(String itemId);
}