| | |
| | | package com.gkhy.safePlatform.equipment.repository; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.safePlatform.equipment.entity.SafeMaterialClassifyDO; |
| | | import com.gkhy.safePlatform.equipment.entity.SafeMaterialClassifyInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface SafeMaterialClassifyInfoRepository extends BaseMapper<SafeMaterialClassifyInfo> { |
| | |
| | | |
| | | SafeMaterialClassifyInfo queryById(@Param("id") Long id); |
| | | |
| | | List<SafeMaterialClassifyInfo> getListByParentId(Long parentId); |
| | | |
| | | SafeMaterialClassifyDO getBigAndSmallClassify(Long smallClassifyId); |
| | | |
| | | List<SafeMaterialClassifyDO> getTraceabilityClassifyList(List<Long> smallClassifyIds); |
| | | } |