22 lines
497 B
Java
22 lines
497 B
Java
package com.ai.da.service;
|
|
|
|
import com.ai.da.mapper.primary.entity.TCollectionElementRelation;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
* <p>
|
|
* collection和element的关联表 服务类
|
|
* </p>
|
|
*
|
|
* @author yanglei
|
|
* @since 2023-05-07
|
|
*/
|
|
public interface TCollectionElementRelationService extends IService<TCollectionElementRelation> {
|
|
void deleteByCollectionId(Long collectionId);
|
|
|
|
List<Long> getByCollectionId(Long collectionId);
|
|
}
|