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

* Mapper 接口 *

* * @author 吴涛涛 * @since 2019-08-02 */ public interface MouldEquipmentMapper extends BaseMapper { List getListByCompanyId(@Param("belongCompanyId") Integer belongCompanyId,@Param("list") List ides); List getList(@Param("companyId")Integer companyId); }