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=?"; }