ludc
2023-03-24 0baeb5d2b147bf29add1e5373652ae70dd749b69
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
package org.springblade.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.system.entity.UserPwdstrategy;
import org.springblade.system.vo.UserPwdstrategyVO;
 
/**
 * 用户密码策略管理表(UserPwdstrategy)表服务接口
 *
 * @author makejava
 * @since 2023-03-22 15:24:54
 */
public interface IUserPwdstrategyService extends IService<UserPwdstrategy> {
 
    /**
     * 通过ID查询单条数据
     *
     * @param id 主键
     * @return 实例对象
     */
    UserPwdstrategy queryById(Long id);
 
    /**
     * 新增或修改数据
     *
     * @param userPwdstrategyVO 实例对象
     * @return 实例对象
     */
    Boolean submit(UserPwdstrategyVO userPwdstrategyVO);
 
 
 
 
}