parent
caa60f6287
commit
2be8962d73
@ -0,0 +1,20 @@
|
||||
package au.com.royalpay.payment.manage.mappers.log;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.github.miemiedev.mybatis.paginator.domain.PageBounds;
|
||||
import com.github.miemiedev.mybatis.paginator.domain.PageList;
|
||||
|
||||
import cn.yixblog.support.mybatis.autosql.annotations.AutoMapper;
|
||||
import cn.yixblog.support.mybatis.autosql.annotations.AutoSql;
|
||||
import cn.yixblog.support.mybatis.autosql.annotations.SqlType;
|
||||
|
||||
/**
|
||||
* Created by yixian on 2016-10-14.
|
||||
*/
|
||||
@AutoMapper(tablename = "log_client_config", pkName = "id")
|
||||
public interface ClientConfigLogMapper {
|
||||
@AutoSql(type = SqlType.INSERT)
|
||||
void saveLog(JSONObject log);
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package au.com.royalpay.payment.manage.merchants.core;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
|
||||
/**
|
||||
* Created by yixian on 2016-06-25.
|
||||
*/
|
||||
public interface ClientConfigService {
|
||||
|
||||
void update(JSONObject record,JSONObject account);
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package au.com.royalpay.payment.manage.merchants.core.impls;
|
||||
|
||||
import au.com.royalpay.payment.manage.mappers.system.ClientConfigMapper;
|
||||
import au.com.royalpay.payment.manage.merchants.core.ClientConfigService;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
public class ClientConfigServiceImpl implements ClientConfigService {
|
||||
@Resource
|
||||
private ClientConfigMapper clientConfigMapper;
|
||||
@Override
|
||||
public void update(JSONObject record, JSONObject account) {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue