文件名从 Source/UBCS/ubcs-service/ubcs-omd/src/main/java/com/vci/ubcs/omd/mapper/OmdAttributeMapper.java 修改 |
| | |
| | | package com.vci.ubcs.omd.mapper; |
| | | |
| | | import com.vci.ubcs.omd.entity.OmdAttribute; |
| | | import com.vci.ubcs.omd.entity.Attribute; |
| | | import org.springblade.core.mp.mapper.BladeMapper; |
| | | |
| | | import java.util.Collection; |
| | |
| | | * @author LiHang |
| | | * @date 2023/4/3 |
| | | */ |
| | | public interface OmdAttributeMapper extends BladeMapper<OmdAttribute> { |
| | | public interface AttributeMapper extends BladeMapper<Attribute> { |
| | | |
| | | /** |
| | | * 鏌ヨ鍏ㄩ儴 |
| | | * @return 鏌ヨ缁撴灉 |
| | | */ |
| | | List<OmdAttribute> selectAll(); |
| | | List<Attribute> selectAll(); |
| | | |
| | | /** |
| | | * 涓婚敭鏌ヨ |
| | | * @param primaryKey 涓婚敭 |
| | | * @return 鏌ヨ缁撴灉 |
| | | */ |
| | | OmdAttribute selectByPrimaryKey(Long primaryKey); |
| | | Attribute selectByPrimaryKey(Long primaryKey); |
| | | |
| | | /** |
| | | * 涓婚敭鎵归噺鏌ヨ |
| | | * @param primaryKeyCollection 涓婚敭闆嗗悎 |
| | | * @return 鏌ヨ缁撴灉 |
| | | */ |
| | | List<OmdAttribute> selectByPrimaryKeyCollection(Collection<String> primaryKeyCollection); |
| | | List<Attribute> selectByPrimaryKeyCollection(Collection<String> primaryKeyCollection); |
| | | } |