shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ishop.merchant.service;
 
import com.walker.jdbc.service.BaseServiceImpl;
import org.springframework.stereotype.Service;
 
@Service
public class UserRegConfigServiceImpl extends BaseServiceImpl {
 
    public void execSetupPayPass(long userId, String passwordMd5){
        this.execute(SQL_UPDATE_PAY_PASS, new Object[]{passwordMd5, userId});
    }
 
    private static final String SQL_UPDATE_PAY_PASS = "update eb_user_config set pay_pwd=? where id=?";
}