shikeyin
2024-01-17 5be90b09bd999cd380cf13acbbf09ed7246a9cc3
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=?";
}