package com.aps.core.mapper;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsPlatePlanTemp;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 钣金计划临时表Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-04-08
|
*/
|
@Mapper
|
public interface ApsPlatePlanTempMapper
|
{
|
/**
|
* 查询钣金计划临时表
|
*
|
* @param id 钣金计划临时表主键
|
* @return 钣金计划临时表
|
*/
|
public ApsPlatePlanTemp selectApsPlatePlanTempById(String id);
|
|
/**
|
* 查询钣金计划临时表列表
|
*
|
* @param apsPlatePlanTemp 钣金计划临时表
|
* @return 钣金计划临时表集合
|
*/
|
public List<ApsPlatePlanTemp> selectApsPlatePlanTempList(ApsPlatePlanTemp apsPlatePlanTemp);
|
|
/**
|
* 新增钣金计划临时表
|
*
|
* @param apsPlatePlanTemp 钣金计划临时表
|
* @return 结果
|
*/
|
public int insertApsPlatePlanTemp(ApsPlatePlanTemp apsPlatePlanTemp);
|
|
/**
|
* 修改钣金计划临时表
|
*
|
* @param apsPlatePlanTemp 钣金计划临时表
|
* @return 结果
|
*/
|
public int updateApsPlatePlanTemp(ApsPlatePlanTemp apsPlatePlanTemp);
|
|
/**
|
* 删除钣金计划临时表
|
*
|
* @param id 钣金计划临时表主键
|
* @return 结果
|
*/
|
public int deleteApsPlatePlanTempById(String id);
|
|
/**
|
* 批量删除钣金计划临时表
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsPlatePlanTempByIds(String[] ids);
|
}
|