package com.aps.core.mapper;
|
|
import java.util.List;
|
import com.aps.core.domain.ApsPlate.ApsPlateProcessStat;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 钣金统计Mapper接口
|
*
|
* @author zhl
|
* @date 2025-04-15
|
*/
|
@Mapper
|
public interface ApsPlateProcessStatMapper
|
{
|
/**
|
* 查询钣金统计
|
*
|
* @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 id 钣金统计主键
|
* @return 结果
|
*/
|
public int deleteApsPlateProcessStatById(String id);
|
|
/**
|
* 批量删除钣金统计
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteApsPlateProcessStatByIds(String[] ids);
|
/**统计临时数据
|
* 批量设置的计划完工日期> 导入的需求日期> 工单自身的计划完工日期
|
* */
|
List<ApsPlateProcessStat> queryTempStat();
|
|
/**
|
* 删除当前批次之外的数据
|
*/
|
int removeOtherStat(String batchNumber);
|
/**
|
* 批量插入数据
|
* */
|
int batchInsertPlateStat(List<ApsPlateProcessStat> list);
|
}
|