package com.aps.core.service.ApsPlate;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsPlate.ApsPlateProcessStat;
|
import org.springframework.transaction.annotation.Transactional;
|
|
/**
|
* 钣金统计Service接口
|
*
|
* @author zhl
|
* @date 2025-04-15
|
*/
|
public interface IApsPlateProcessStatService
|
{
|
/**
|
* 查询钣金统计
|
*
|
* @param id 钣金统计主键
|
* @return 钣金统计
|
*/
|
public ApsPlateProcessStat selectApsPlateProcessStatById(String id);
|
|
/**
|
* 查询钣金统计列表
|
*
|
* @param apsPlateProcessStat 钣金统计
|
* @return 钣金统计集合
|
*/
|
public List<ApsPlateProcessStat> selectApsPlateProcessStatList(ApsPlateProcessStat apsPlateProcessStat);
|
|
/**
|
* 新增钣金统计
|
*
|
* @param apsPlateProcessStat 钣金统计
|
* @return 结果
|
*/
|
public int insertApsPlateProcessStat(ApsPlateProcessStat apsPlateProcessStat);
|
|
/**
|
* 修改钣金统计
|
*
|
* @param apsPlateProcessStat 钣金统计
|
* @return 结果
|
*/
|
public int updateApsPlateProcessStat(ApsPlateProcessStat apsPlateProcessStat);
|
|
/**
|
* 批量删除钣金统计
|
*
|
* @param ids 需要删除的钣金统计主键集合
|
* @return 结果
|
*/
|
public int deleteApsPlateProcessStatByIds(String[] ids);
|
|
/**
|
* 删除钣金统计信息
|
*
|
* @param id 钣金统计主键
|
* @return 结果
|
*/
|
public int deleteApsPlateProcessStatById(String id);
|
|
|
List<ApsPlateProcessStat> computePlateProcessStat();
|
}
|