Newer
Older
casic-metering / casic-metering-dao / src / main / java / com / casic / missiles / mapper / PurchaseMapper.java
wangpeng on 21 Nov 2022 1 KB project init
package com.casic.missiles.mapper;

import com.casic.missiles.dto.Purchase;
import org.apache.ibatis.annotations.Mapper;

import java.util.List;

/**
 * 采购Mapper接口
 */
@Mapper
public interface PurchaseMapper {
    /**
     * 查询采购
     * 
     * @param id 采购主键
     * @return 采购
     */
    public Purchase selectPurchaseById(Long id);

    /**
     * 查询采购列表
     * 
     * @param purchase 采购
     * @return 采购集合
     */
    public List<Purchase> selectPurchaseList(Purchase purchase);

    /**
     * 新增采购
     * 
     * @param purchase 采购
     * @return 结果
     */
    public int insertPurchase(Purchase purchase);

    /**
     * 修改采购
     * 
     * @param purchase 采购
     * @return 结果
     */
    public int updatePurchase(Purchase purchase);

    /**
     * 删除采购
     * 
     * @param id 采购主键
     * @return 结果
     */
    public int deletePurchaseById(Long id);

    /**
     * 批量删除采购
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deletePurchaseByIds(String[] ids);
}