¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.vci.ubcs.omd.mapper; |
| | | |
| | | import com.vci.ubcs.omd.entity.BtmTypeAttribute; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.core.mp.mapper.BladeMapper; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Description: ä¸å¡ç±»åå
³è屿§çmapper |
| | | * |
| | | * @author LiHang |
| | | * @date 2023/4/23 |
| | | */ |
| | | public interface BtmTypeAttributeMapper extends BladeMapper<BtmTypeAttribute> { |
| | | |
| | | int batchDelete(List<String> records); |
| | | |
| | | |
| | | int batchUpdate(List<BtmTypeAttribute> btmTypeAttributeDOList); |
| | | |
| | | /** |
| | | * è·åä¸å¡ç±»åä¸çæå®å±æ§ |
| | | * @param id ä¸å¡ç±»åçä¸»é® |
| | | * @param attributeIdCollection 屿§çid, |
| | | * @return 屿§çæ°æ®å¯¹è±¡ |
| | | */ |
| | | List<BtmTypeAttribute> selectByBtmTypeIdAndAttributeIds(@Param("btmTypeId")String id, @Param("ids") Collection<String> attributeIdCollection); |
| | | |
| | | /** |
| | | * éè¿ä¸å¡ç±»åçè±æåç§°è·åå
³èç屿§ |
| | | * @param ids ä¸å¡ç±»åçè±æåç§°éå |
| | | * @return å
å«ç屿§ |
| | | */ |
| | | List<BtmTypeAttribute> selectByBtmTypeIds(@Param("ids") Collection<String> ids); |
| | | } |