MouldEquipmentMapper.java 698 B

123456789101112131415161718192021222324
  1. package com.hssx.cloudmodel.mapper;
  2. import com.hssx.cloudmodel.entity.MouldEquipment;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.hssx.cloudmodel.entity.vo.MouldEquipmentVO;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.web.bind.annotation.RequestParam;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * Mapper 接口
  11. * </p>
  12. *
  13. * @author 吴涛涛
  14. * @since 2019-08-02
  15. */
  16. public interface MouldEquipmentMapper extends BaseMapper<MouldEquipment> {
  17. List<MouldEquipmentVO> getListByCompanyId(@Param("belongCompanyId") Integer belongCompanyId,@Param("list") List<Integer> ides);
  18. List<MouldEquipmentVO> getList(@Param("companyId")Integer companyId);
  19. }