| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.basic.pojo.ProductPart; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface ProductPartMapper extends BaseMapper<ProductPart> { |
| | | IPage<ProductPart> selectListByProductId(IPage<ProductPart> page, |
| | | @Param("ew") QueryWrapper<ProductPart> ew, |
| | | @Param("productId") Integer productId); |
| | | @Param("ew") QueryWrapper<ProductPart> ew, |
| | | @Param("productId") Integer productId); |
| | | |
| | | List<Map<String, Object>> inspectionItems(@Param("name") String name); |
| | | |
| | | IPage<Map<String, Object>> productPartLogList(@Param("page") Page page,@Param("id") Integer id); |
| | | } |