zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package ${bussiPackage}.${entityPackage}.mapper;
 
import org.apache.ibatis.annotations.Param;
import ${bussiPackage}.${entityPackage}.entity.${entityName};
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
 * @Description: ${tableVo.ftlDescription}
 * @Author: jeecg-boot
 * @Date:   ${.now?string["yyyy-MM-dd"]}
 * @Version: V1.0
 */
public interface ${entityName}Mapper extends BaseMapper<${entityName}> {
 
    /**
     * 编辑节点状态
     * @param id
     * @param status
     */
    void updateTreeNodeStatus(@Param("id") String id,@Param("status") String status);
 
}