1234567891011121314151617181920 |
- package com.hssx.cloudmodel.mapper;
- import com.hssx.cloudmodel.entity.MouldMaintain;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-08-13
- */
- public interface MouldMaintainMapper extends BaseMapper<MouldMaintain> {
- List<MouldMaintain> selectListByProject(@Param("list") List<Integer> proIds);
- }
|