You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
566 B
30 lines
566 B
package com.hai.service;
|
|
|
|
import com.hai.entity.HighUserPayPassword;
|
|
|
|
/**
|
|
* 用户支付密码
|
|
*/
|
|
public interface HighUserPayPasswordService {
|
|
|
|
/**
|
|
* 用户密码编辑
|
|
* @param highUserPayPassword
|
|
*/
|
|
void editUserPayPwd(HighUserPayPassword highUserPayPassword);
|
|
|
|
/**
|
|
* 根据用户查询密码
|
|
* @param userId
|
|
* @return
|
|
*/
|
|
HighUserPayPassword getDetailByUser(Long userId);
|
|
|
|
/**
|
|
* 查询用户是否设置支付密码
|
|
* @param userId
|
|
* @return
|
|
*/
|
|
Boolean isSetPayPwd(Long userId);
|
|
|
|
}
|
|
|