package com.zhitan.productoutput.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.zhitan.productoutput.domain.ProductOutput;
|
|
import java.util.List;
|
|
/**
|
* 产品产量Mapper接口
|
*
|
* @author ZhiTan
|
* @date 2024-10-08
|
*/
|
public interface ProductOutputMapper extends BaseMapper<ProductOutput> {
|
/**
|
* 查询产品产量
|
*
|
* @param nodeId 产品产量主键
|
* @return 产品产量
|
*/
|
public ProductOutput selectProductOutputById(String nodeId);
|
|
/**
|
* 查询产品产量列表
|
*
|
* @param productOutput 产品产量
|
* @return 产品产量集合
|
*/
|
public List<ProductOutput> selectProductOutputList(ProductOutput productOutput);
|
|
/**
|
* 新增产品产量
|
*
|
* @param productOutput 产品产量
|
* @return 结果
|
*/
|
public int insertProductOutput(ProductOutput productOutput);
|
|
/**
|
* 修改产品产量
|
*
|
* @param productOutput 产品产量
|
* @return 结果
|
*/
|
public int updateProductOutput(ProductOutput productOutput);
|
|
/**
|
* 删除产品产量
|
*
|
* @param nodeId 产品产量主键
|
* @return 结果
|
*/
|
public int deleteProductOutputById(String nodeId);
|
|
/**
|
* 批量删除产品产量
|
*
|
* @param nodeIds 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteProductOutputByIds(String[] nodeIds);
|
}
|