| 123456789101112131415161718192021222324 |
- package com.hssx.cloudmodel.mapper;
- import com.hssx.cloudmodel.entity.MouldEquipment;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.hssx.cloudmodel.entity.vo.MouldEquipmentVO;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.web.bind.annotation.RequestParam;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-08-02
- */
- public interface MouldEquipmentMapper extends BaseMapper<MouldEquipment> {
- List<MouldEquipmentVO> getListByCompanyId(@Param("belongCompanyId") Integer belongCompanyId,@Param("list") List<Integer> ides);
- List<MouldEquipmentVO> getList(@Param("companyId")Integer companyId);
- }
|