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; /** *

* Mapper 接口 *

* * @author 吴涛涛 * @since 2019-08-13 */ public interface MouldMaintainMapper extends BaseMapper { List selectListByProject(@Param("list") List proIds); }