You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
798 B
Java
23 lines
798 B
Java
package com.glxp.api.dao.basic;
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
import com.glxp.api.entity.basic.UdiRelevanceEntity;
|
|
import com.glxp.api.req.basic.FilterUdiRelRequest;
|
|
import com.glxp.api.res.basic.UdiRelevanceResponse;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface UdiRelevanceDao extends BaseMapperPlus<UdiRelevanceDao, UdiRelevanceEntity, UdiRelevanceEntity> {
|
|
|
|
List<UdiRelevanceResponse> filterUdiRelevance(FilterUdiRelRequest filterUdiRelRequest);
|
|
|
|
List<UdiRelevanceEntity> batchSelectByIds(@Param("ids") List<String> ids);
|
|
|
|
boolean updateUdiRelevance(UdiRelevanceEntity udiRelevanceEntity);
|
|
|
|
List<UdiRelevanceEntity> batchSelectByUuid(@Param("uuids") List<String> uuids);
|
|
}
|