Compare commits
No commits in common. "0a5d34f2a7cb3fded3ffa66e14ae63eefb8cc7cc" and "c2c1ee45f7343119e2331e56d531f50c3eea663e" have entirely different histories.
0a5d34f2a7
...
c2c1ee45f7
|
|
@ -30,8 +30,6 @@ public class AccInfoDetailsVO {
|
|||
@ApiModelProperty("用户部门")
|
||||
private String deptName;
|
||||
@ApiModelProperty("用户部门")
|
||||
private String deptFullName;
|
||||
@ApiModelProperty("用户部门")
|
||||
private Long deptId;
|
||||
@ApiModelProperty("用户类别(展示)")
|
||||
@Excel(name = "用户类别(展示)")
|
||||
|
|
|
|||
|
|
@ -41,11 +41,11 @@ public class AccReportController extends BaseController
|
|||
return getDataTable(list);
|
||||
}
|
||||
|
||||
// @ApiOperation("账户余额汇总")
|
||||
// @PostMapping({"/balance/sum"})
|
||||
// public AjaxResult queryAccInfoBalanceSum(@RequestBody AccountInfoQueryParam accountInfoQueryParam) {
|
||||
// return AjaxResult.success(this.accReportService.balanceListSum(accountInfoQueryParam));
|
||||
// }
|
||||
@ApiOperation("查询账户余额统计")
|
||||
@PostMapping({"/balance/sum"})
|
||||
public AjaxResult queryAccInfoBalanceSum(@RequestBody AccountInfoQueryParam accountInfoQueryParam) {
|
||||
return AjaxResult.success(this.accReportService.balanceListSum(accountInfoQueryParam));
|
||||
}
|
||||
@ApiOperation("充值方式汇总")
|
||||
@PostMapping("/recharge")
|
||||
@ResponseBody
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ public class RechargeRecordVO implements Serializable {
|
|||
@JsonIgnore
|
||||
private Long subNum;
|
||||
private BigDecimal cashRechargeAmount;
|
||||
@JsonIgnore
|
||||
private BigDecimal aliRechargeAmount;
|
||||
private BigDecimal subRechargeAmount;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ public class TradeFlowVO implements Serializable {
|
|||
private String phonenumber;
|
||||
private Long deptId;
|
||||
private String deptName;
|
||||
private String deptFullName;
|
||||
private BigDecimal accAllBal;
|
||||
private LocalDateTime tradeTime;
|
||||
private Integer tradeType;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ public class WithdrawRecordVO implements Serializable {
|
|||
private String nickName;
|
||||
private Long deptId;
|
||||
private String deptName;
|
||||
private String deptFullName;
|
||||
private int withdrawNum;
|
||||
private double withdrawAmount;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -387,7 +387,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
t2.nick_name,
|
||||
t2.phonenumber as phoneNumber,
|
||||
t6.dept_name,
|
||||
t6.dept_full_name,
|
||||
t2.user_type as userType,
|
||||
t1.scope,
|
||||
t1.acc_status,
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
su.nick_name,
|
||||
sd.dept_id,
|
||||
sd.dept_name,
|
||||
sd.dept_full_name,
|
||||
count(1) AS withdraw_num,
|
||||
SUM(IFNULL( atwd.amount, 0)) AS withdraw_amount
|
||||
from acc_trade_wallet_detail atwd
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
su.phonenumber,
|
||||
sd.dept_id,
|
||||
sd.dept_name,
|
||||
sd.dept_full_name,
|
||||
at2.acc_all_bal,
|
||||
at2.trade_time,
|
||||
at2.trade_type,
|
||||
|
|
|
|||
Loading…
Reference in New Issue