| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package cn.iocoder.yudao.module.mdm.dal.mysql.item; |
| | | |
| | | import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; |
| | | import cn.iocoder.yudao.module.mdm.dal.dataobject.item.MdmItemBatchConfigDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * MDM ç©ææ¹æ¬¡å±æ§é
ç½® Mapper |
| | | * |
| | | * @author èéæºç |
| | | */ |
| | | @Mapper |
| | | public interface MdmItemBatchConfigMapper extends BaseMapperX<MdmItemBatchConfigDO> { |
| | | |
| | | default MdmItemBatchConfigDO selectByItemId(Long itemId) { |
| | | return selectOne(MdmItemBatchConfigDO::getItemId, itemId); |
| | | } |
| | | |
| | | } |