ludc
2023-03-31 55d705fdd93a1f21f1d8d448bd280942aa205127
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
36
37
38
39
40
package com.vci.ubcs.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.vci.ubcs.system.entity.UserPwdstrategy;
 
import java.util.List;
 
/**
 * 用户密码策略管理表(UserPwdstrategy)表数据库访问层
 *
 * @author ludc
 * @since 2023-03-22 15:24:46
 */
public interface UserPwdstrategyMapper  extends BaseMapper<UserPwdstrategy> {
 
    /**
     * 通过ID查询单条数据
     *
     * @param id 主键
     * @return 实例对象
     */
    UserPwdstrategy queryById(Long id);
 
    /**
     * 修改数据
     *
     * @param UserPwdstrategy 实例对象
     * @return 影响行数
     */
    int update(UserPwdstrategy UserPwdstrategy);
 
    /**
     * 通过用户id进行删除数据
     *
     * @param userIds 用户id
     * @return 影响行数
     */
    int deleteByUserIds(List<Long> userIds);
 
}