package com.aps.core.mapper;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsPartPlan;
|
import com.aps.core.domain.ApsPartPlanTemp;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 零件计划管理Mapper接口
|
*
|
* @author wwj
|
* @date 2025-04-08
|
*/
|
@Mapper
|
public interface ApsPartPlanMapper
|
{
|
/**
|
* 查询零件计划管理
|
*
|
* @param id 零件计划管理主键
|
* @return 零件计划管理
|
*/
|
public ApsPartPlan selectApsPartPlanById(String id);
|
|
/**
|
* 查询零件计划管理列表
|
*
|
* @param apsPartPlan 零件计划管理
|
* @return 零件计划管理集合
|
*/
|
public List<ApsPartPlan> selectApsPartPlanList(ApsPartPlan apsPartPlan);
|
|
/**
|
* 新增零件计划管理
|
*
|
* @param apsPartPlan 零件计划管理
|
* @return 结果
|
*/
|
public int insertApsPartPlan(ApsPartPlan apsPartPlan);
|
|
/**
|
* 修改零件计划管理
|
*
|
* @param apsPartPlan 零件计划管理
|
* @return 结果
|
*/
|
public int updateApsPartPlan(ApsPartPlan apsPartPlan);
|
|
/**
|
* 删除零件计划管理
|
*
|
* @param id 零件计划管理主键
|
* @return 结果
|
*/
|
public int deleteApsPartPlanById(String id);
|
|
/**
|
* 批量删除零件计划管理
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsPartPlanByIds(String[] ids);
|
|
int insertBatch(List<ApsPartPlanTemp> apsPartPlanTemps);
|
}
|