小精灵优化-后台-档位和个数
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
</select>
|
||||
|
||||
<select id="listUserDrawRecord" resultType="com.accompany.admin.vo.seekelfin.SeekElfinAdminUserRecordVO">
|
||||
select sr.id,sr.uid,u.erban_no,u.nick,sr.cost_gold_num,sr.receive_gold_num,sr.create_time
|
||||
select sr.id,sr.uid,u.erban_no,u.nick,sr.selectd_no_num `select_no_num`, sr.prod_id, sr.cost_gold_num,sr.receive_gold_num,sr.create_time
|
||||
from seek_elfin_record sr, users u
|
||||
where sr.uid = u.uid
|
||||
<if test="startTime != null and startTime != ''">
|
||||
|
@@ -113,8 +113,10 @@ public class SeekElfinAdminController extends BaseController {
|
||||
headerList.add("uid");
|
||||
headerList.add("平台号");
|
||||
headerList.add("昵称");
|
||||
headerList.add("购买头饰");
|
||||
headerList.add("平台价值");
|
||||
headerList.add("档位");
|
||||
headerList.add("购买个数");
|
||||
headerList.add("花费总钻石数");
|
||||
headerList.add("产出平台价值");
|
||||
headerList.add("时间");
|
||||
String fileName = "用户寻找小精灵记录.xls";
|
||||
List<List> excelRows = buildExcelData(recordList);
|
||||
@@ -137,6 +139,8 @@ public class SeekElfinAdminController extends BaseController {
|
||||
excelData.add(vo.getUid());
|
||||
excelData.add(vo.getErbanNo());
|
||||
excelData.add(vo.getNick());
|
||||
excelData.add(vo.getProdId());
|
||||
excelData.add(vo.getSelectNoNum());
|
||||
excelData.add(vo.getCostGoldNum());
|
||||
excelData.add(vo.getReceiveGoldNum());
|
||||
excelData.add(DateTimeUtil.convertDate(vo.getCreateTime(), DateTimeUtil.DEFAULT_DATETIME_PATTERN));
|
||||
|
@@ -77,8 +77,10 @@
|
||||
{field: 'uid', title: 'uid', align: 'center', width: '5%'},
|
||||
{field: 'erbanNo', title: '平台号', align: 'center', width: '5%'},
|
||||
{field: 'nick', title: '昵称', align: 'center', width: '5%'},
|
||||
{field: 'costGoldNum', title: '购买头饰', align: 'center', width: '5%'},
|
||||
{field: 'receiveGoldNum', title: '平台价值', align: 'center', width: '5%'},
|
||||
{field: 'prodId', title: '档位', align: 'center', width: '5%'},
|
||||
{field: 'selectNoNum', title: '购买个数', align: 'center', width: '5%'},
|
||||
{field: 'costGoldNum', title: '花费总钻石数', align: 'center', width: '5%'},
|
||||
{field: 'receiveGoldNum', title: '产出平台价值', align: 'center', width: '5%'},
|
||||
{field: 'createTime', title: '时间', align: 'center', width: '5%',
|
||||
formatter: function (val, row, index) {
|
||||
if (val) {
|
||||
|
Reference in New Issue
Block a user