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