- 将 ApsPlanSheetMapper 中的 selectList 方法重命名为 selectListByReq - 更新 MyBatis 映射文件中的对应 SQL 查询 ID - 修改服务实现类中的方法调用以匹配新方法名
23 lines
657 B
Java
23 lines
657 B
Java
package com.klp.aps.mapper;
|
|
|
|
import com.klp.aps.domain.dto.ApsPlanSheetQueryReq;
|
|
import com.klp.aps.domain.dto.ApsQuickSheetQueryReq;
|
|
import com.klp.aps.domain.entity.ApsPlanSheet;
|
|
import com.klp.aps.domain.vo.ApsPlanSheetRowVo;
|
|
import com.klp.aps.domain.vo.ApsPlanSheetVo;
|
|
import com.klp.aps.domain.vo.ApsQuickSheetRowVo;
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 排产单主Mapper接口
|
|
*
|
|
* @author klp
|
|
* @date 2026-03-26
|
|
*/
|
|
public interface ApsPlanSheetMapper extends BaseMapperPlus<ApsPlanSheetMapper, ApsPlanSheet, ApsPlanSheetVo> {
|
|
|
|
List<ApsPlanSheetRowVo> selectListByReq(ApsPlanSheetQueryReq req);
|
|
}
|