package com.aps.core.service.ApsPlate; import java.util.List; import com.aps.core.domain.ApsPlate.ApsPlateStandardRequire; import com.aps.core.domain.ApsPlate.ApsPlateStandardRequireError; /** * 钣金标准需求异常信息Service接口 * * @author zhl * @date 2025-05-08 */ public interface IApsPlateStandardRequireErrorService { /** * 查询钣金标准需求异常信息 * * @param id 钣金标准需求异常信息主键 * @return 钣金标准需求异常信息 */ public ApsPlateStandardRequireError selectApsPlateStandardRequireErrorById(Long id); /** * 查询钣金标准需求异常信息列表 * * @param apsPlateStandardRequireError 钣金标准需求异常信息 * @return 钣金标准需求异常信息集合 */ public List selectApsPlateStandardRequireErrorList(ApsPlateStandardRequireError apsPlateStandardRequireError); /** * 新增钣金标准需求异常信息 * * @param apsPlateStandardRequireError 钣金标准需求异常信息 * @return 结果 */ public int insertApsPlateStandardRequireError(ApsPlateStandardRequireError apsPlateStandardRequireError); /** * 修改钣金标准需求异常信息 * * @param apsPlateStandardRequireError 钣金标准需求异常信息 * @return 结果 */ public int updateApsPlateStandardRequireError(ApsPlateStandardRequireError apsPlateStandardRequireError); /** * 批量删除钣金标准需求异常信息 * * @param ids 需要删除的钣金标准需求异常信息主键集合 * @return 结果 */ public int deleteApsPlateStandardRequireErrorByIds(Long[] ids); /** * 删除钣金标准需求异常信息信息 * * @param id 钣金标准需求异常信息主键 * @return 结果 */ public int deleteApsPlateStandardRequireErrorById(Long id); void saveRequireError(ApsPlateStandardRequire require, String message); }