refactor(service): 简化当前状态服务接口
- 移除冗余的查询、分页和删除方法 -保留核心方法 selectAll用于获取全部数据 - 清理导入包和注释,优化代码结构
This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
package com.klp.pocket.mapper;
|
||||
|
||||
import com.klp.pocket.domain.Klptcm1ProPlantStateCurrent;
|
||||
import com.klp.pocket.domain.vo.Klptcm1ProPlantStateCurrentVo;
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 当前Mapper接口
|
||||
*
|
||||
* @author klp
|
||||
* @date 2025-10-27
|
||||
*/
|
||||
public interface Klptcm1ProPlantStateCurrentMapper extends BaseMapperPlus<Klptcm1ProPlantStateCurrentMapper, Klptcm1ProPlantStateCurrent, Klptcm1ProPlantStateCurrentVo> {
|
||||
@Mapper
|
||||
public interface Klptcm1ProPlantStateCurrentMapper {
|
||||
|
||||
// 查询所有
|
||||
List<Klptcm1ProPlantStateCurrent> selectAll();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user