| | |
| | | package com.taoke.autopay.service; |
| | | |
| | | import com.taoke.autopay.dao.ClientInfoMapper; |
| | | import com.taoke.autopay.entity.ClientInfo; |
| | | import com.taoke.autopay.exception.LoginException; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author hxh |
| | |
| | | **/ |
| | | public void setActiveTime(Long id, Date date); |
| | | |
| | | public List<ClientInfo> listByIds(List<Long> ids); |
| | | |
| | | |
| | | public List<ClientInfo> list(ClientInfoMapper.DaoQuery query); |
| | | |
| | | public long count(ClientInfoMapper.DaoQuery query); |
| | | |
| | | /** |
| | | * @author hxh |
| | | * @description 添加账号 |
| | | * @date 15:40 2024/7/26 |
| | | * @param: info |
| | | * @return void |
| | | **/ |
| | | public void add(ClientInfo info); |
| | | |
| | | /** |
| | | * @author hxh |
| | | * @description 设置密码 |
| | | * @date 15:40 2024/7/26 |
| | | * @param: id |
| | | * @param: pwd |
| | | * @return void |
| | | **/ |
| | | public void setPwd(Long id,String pwd); |
| | | |
| | | /** |
| | | * @author hxh |
| | | * @description 获取可以重新分配支付的设备 |
| | | * @date 18:15 2024/7/30 |
| | | * @return java.util.List<java.lang.Long> |
| | | **/ |
| | | public List<Long> getRePayClientIds(); |
| | | |
| | | |
| | | } |