package com.dy.pipIrrGlobal.daoMd;
|
|
import com.dy.pipIrrGlobal.pojoMd.MdParam;
|
import com.dy.pipIrrGlobal.voMd.VoParam;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @Author: liurunyu
|
* @Date: 2025/8/6 10:51
|
* @Description
|
*/
|
public interface MdParamMapper {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(MdParam record);
|
|
int insertSelective(MdParam record);
|
|
MdParam selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(MdParam record);
|
|
int updateByPrimaryKey(MdParam record);
|
|
|
VoParam selectById(Long id);
|
|
/**
|
* 分页查询一些
|
* @return 实体集合
|
* */
|
List<VoParam> selectAll();
|
|
/**
|
* 根据id删除
|
* @param id
|
* @return
|
*/
|
Integer deleteByPrimaryKey(@Param("id") Long id);
|
}
|