| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.system.entity.UserPwdstrategy; |
| | | import org.springblade.system.vo.UserPwdstrategyVO; |
| | | |
| | | /** |
| | | * 用户密码策略管理表(UserPwdstrategy)表服务接口 |
| | |
| | | public interface IUserPwdstrategyService extends IService<UserPwdstrategy> { |
| | | |
| | | /** |
| | | * 新增或修改数据 |
| | | * 通过ID查询单条数据 |
| | | * |
| | | * @param UserPwdstrategy 实例对象 |
| | | * @param id 主键 |
| | | * @return 实例对象 |
| | | */ |
| | | boolean submit(UserPwdstrategy UserPwdstrategy); |
| | | UserPwdstrategy queryById(Long id); |
| | | |
| | | /** |
| | | * 新增或修改数据 |
| | | * |
| | | * @param userPwdstrategyVO 实例对象 |
| | | * @return 实例对象 |
| | | */ |
| | | Boolean submit(UserPwdstrategyVO userPwdstrategyVO); |
| | | |
| | | |
| | | |
| | | |
| | | } |