15030600271
2023-10-24 bf764e861a3b0b8148cf313003d31682c18260c8
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
28
29
30
31
32
33
34
35
package com.thhy.usercore.modules.sys.pdamenu.mapper;
 
import com.thhy.usercore.modules.sys.pdamenu.entity.PdaMenuRole;
import org.springframework.stereotype.Component;
 
import java.io.Serializable;
import java.util.List;
 
/**
 *  Mapper 接口
 * @author zhang_xiao_bo
 * @since 2023-06-05 09:54:08
 */
@Component
public interface PdaMenuRoleMapper {
 
 
    PdaMenuRole queryById(Serializable id);
 
    Integer queryVersionById(Serializable id);
 
    List<PdaMenuRole> findList(PdaMenuRole pdamenurole);
 
    List<PdaMenuRole> findAll();
 
    void insert(PdaMenuRole pdamenurole);
 
    void update(PdaMenuRole pdamenurole);
 
    void deletelogic(Serializable id);
 
    void deleteById(Serializable id);
 
    void deleteByRoleId(String roleId);
}