package com.dy.pipIrrGlobal.daoIr;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoIr.IrProject;
|
import com.dy.pipIrrGlobal.pojoPr.PrController;
|
import com.dy.pipIrrGlobal.pojoPr.PrIntake;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* @author :WuZeYu
|
* @Date :2024/5/14 15:04
|
* @LastEditTime :2024/5/14 15:04
|
* @Description
|
*/
|
@Mapper
|
public interface IrProjectMapper extends BaseMapper<IrProject> {
|
//增
|
int insertSelective(IrProject record);
|
//删
|
int deleteLogicById(Long id);
|
//改
|
int updateByPrimaryKeySelective(IrProject record);
|
|
/**
|
* 修改项目状态
|
* @param id
|
* @return
|
*/
|
int updateProjectState(IrProject record);
|
|
/**
|
* 根据下级Id获取上一级地址Id
|
* @param vaId 下一级Id
|
* @return
|
*/
|
Long getSupperByVillageId(long vaId);
|
}
|