2026-06-29 940c8481d2fdcf51341db4ccd6fd6fcc2d43debb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
    }
 
}