parent
246c6eddd5
commit
24f2c0bf95
@ -1,27 +0,0 @@
|
||||
package au.com.royalpay.payment.manage.mappers.system;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
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.AdvanceSelect;
|
||||
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-06-25.
|
||||
*/
|
||||
@AutoMapper(tablename = "sys_clients_config", pkName = "client_id")
|
||||
public interface ClientConfigMapper {
|
||||
@AutoSql(type = SqlType.INSERT)
|
||||
void save(JSONObject partner);
|
||||
|
||||
@AutoSql(type = SqlType.UPDATE)
|
||||
int update(JSONObject partner);
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Payment Notice</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
|
||||
<link rel="stylesheet" type="text/css" href="/static/lib/weui1/weui.min.css">
|
||||
<script type="text/javascript" src="//res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
|
||||
<script type="text/javascript" src="/static/lib/jquery/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="/static/templates/disable_wechat_menu.js?t=201607070231"></script>
|
||||
<style type="text/css">
|
||||
.weui_cell_ft {
|
||||
max-width: 60%;
|
||||
white-space: normal
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="weui_panel">
|
||||
<div class="weui_panel_bd">
|
||||
<div class="weui_media_box weui_media_appmsg">
|
||||
<div class="weui_media_hd">
|
||||
<img class="weui_media_appmsg_thumb" data-th-src="${client.logo_url}" alt="">
|
||||
</div>
|
||||
<div class="weui_media_bd">
|
||||
<h4 class="weui_media_title" data-th-text="${client.company_name}"></h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div data-th-if="${auditions.size()==0}">
|
||||
<p> There is no refund applies at the moment! </p>
|
||||
</div>
|
||||
<div data-th-if="${auditions.size()>0}">
|
||||
asdlkjasd
|
||||
<div class="weui_panel">
|
||||
<div class="weui_panel_bd">
|
||||
<div class="weui_cells weui_cells_access">
|
||||
<div th-each="apply: ${audition}}">
|
||||
<a class="weui_cell" th-href="/api/payment/v1.0/refund/auditions/ + @{apply.id}">
|
||||
<div class="weui_cell_bd weui_cell_primary">
|
||||
<p th-text="${apply.currency}+ ${#numbers.formatDecimal($apply.refund_fee,1,2)}"></p>
|
||||
</div>
|
||||
<div class="weui_cell_ft" th-text="${apply.order_id}}"></div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue