package com.aps.core.mapper;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsPartPlanTemp;
|
|
/**
|
* 零件计划管理临时Mapper接口
|
*
|
* @author wwj
|
* @date 2025-04-08
|
*/
|
public interface ApsPartPlanTempMapper
|
{
|
/**
|
* 查询零件计划管理临时
|
*
|
* @param id 零件计划管理临时主键
|
* @return 零件计划管理临时
|
*/
|
public ApsPartPlanTemp selectApsPartPlanTempById(String id);
|
|
/**
|
* 查询零件计划管理临时列表
|
*
|
* @param apsPartPlanTemp 零件计划管理临时
|
* @return 零件计划管理临时集合
|
*/
|
public List<ApsPartPlanTemp> selectApsPartPlanTempList(ApsPartPlanTemp apsPartPlanTemp);
|
|
/**
|
* 新增零件计划管理临时
|
*
|
* @param apsPartPlanTemp 零件计划管理临时
|
* @return 结果
|
*/
|
public int insertApsPartPlanTemp(ApsPartPlanTemp apsPartPlanTemp);
|
|
/**
|
* 修改零件计划管理临时
|
*
|
* @param apsPartPlanTemp 零件计划管理临时
|
* @return 结果
|
*/
|
public int updateApsPartPlanTemp(ApsPartPlanTemp apsPartPlanTemp);
|
|
/**
|
* 删除零件计划管理临时
|
*
|
* @param id 零件计划管理临时主键
|
* @return 结果
|
*/
|
public int deleteApsPartPlanTempById(String id);
|
|
/**
|
* 批量删除零件计划管理临时
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsPartPlanTempByIds(String[] ids);
|
}
|