| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.springblade.system.entity.UserPwdstrategy; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 用户密码策略管理表(UserPwdstrategy)表数据库访问层 |
| | | * |
| | |
| | | UserPwdstrategy queryById(Long id); |
| | | |
| | | /** |
| | | * 统计总行数 |
| | | * |
| | | * @param UserPwdstrategy 查询条件 |
| | | * @return 总行数 |
| | | */ |
| | | long count(UserPwdstrategy UserPwdstrategy); |
| | | |
| | | /** |
| | | * 修改数据 |
| | | * |
| | | * @param UserPwdstrategy 实例对象 |
| | |
| | | int update(UserPwdstrategy UserPwdstrategy); |
| | | |
| | | /** |
| | | * 通过主键删除数据 |
| | | * 通过用户id进行删除数据 |
| | | * |
| | | * @param id 主键 |
| | | * @param userIds 用户id |
| | | * @return 影响行数 |
| | | */ |
| | | int deleteById(Long id); |
| | | int deleteByUserIds(List<Long> userIds); |
| | | |
| | | } |
| | | |