wuzeyu
2024-05-15 079d7aaca34dffa3bdcdc291c861b51ee707a67e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 org.apache.ibatis.annotations.Mapper;
 
/**
 * @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);
 
    /**
     * 根据下级Id获取上一级地址Id
     * @param vaId 下一级Id
     * @return
     */
    Long getSupperByVillageId(long vaId);
}