Compare commits

..

No commits in common. "0a5d34f2a7cb3fded3ffa66e14ae63eefb8cc7cc" and "c2c1ee45f7343119e2331e56d531f50c3eea663e" have entirely different histories.

8 changed files with 5 additions and 13 deletions

View File

@ -30,8 +30,6 @@ public class AccInfoDetailsVO {
@ApiModelProperty("用户部门") @ApiModelProperty("用户部门")
private String deptName; private String deptName;
@ApiModelProperty("用户部门") @ApiModelProperty("用户部门")
private String deptFullName;
@ApiModelProperty("用户部门")
private Long deptId; private Long deptId;
@ApiModelProperty("用户类别(展示)") @ApiModelProperty("用户类别(展示)")
@Excel(name = "用户类别(展示)") @Excel(name = "用户类别(展示)")

View File

@ -41,11 +41,11 @@ public class AccReportController extends BaseController
return getDataTable(list); return getDataTable(list);
} }
// @ApiOperation("账户余额汇总") @ApiOperation("查询账户余额统计")
// @PostMapping({"/balance/sum"}) @PostMapping({"/balance/sum"})
// public AjaxResult queryAccInfoBalanceSum(@RequestBody AccountInfoQueryParam accountInfoQueryParam) { public AjaxResult queryAccInfoBalanceSum(@RequestBody AccountInfoQueryParam accountInfoQueryParam) {
// return AjaxResult.success(this.accReportService.balanceListSum(accountInfoQueryParam)); return AjaxResult.success(this.accReportService.balanceListSum(accountInfoQueryParam));
// } }
@ApiOperation("充值方式汇总") @ApiOperation("充值方式汇总")
@PostMapping("/recharge") @PostMapping("/recharge")
@ResponseBody @ResponseBody

View File

@ -15,7 +15,6 @@ public class RechargeRecordVO implements Serializable {
@JsonIgnore @JsonIgnore
private Long subNum; private Long subNum;
private BigDecimal cashRechargeAmount; private BigDecimal cashRechargeAmount;
@JsonIgnore
private BigDecimal aliRechargeAmount; private BigDecimal aliRechargeAmount;
private BigDecimal subRechargeAmount; private BigDecimal subRechargeAmount;
} }

View File

@ -14,7 +14,6 @@ public class TradeFlowVO implements Serializable {
private String phonenumber; private String phonenumber;
private Long deptId; private Long deptId;
private String deptName; private String deptName;
private String deptFullName;
private BigDecimal accAllBal; private BigDecimal accAllBal;
private LocalDateTime tradeTime; private LocalDateTime tradeTime;
private Integer tradeType; private Integer tradeType;

View File

@ -12,7 +12,6 @@ public class WithdrawRecordVO implements Serializable {
private String nickName; private String nickName;
private Long deptId; private Long deptId;
private String deptName; private String deptName;
private String deptFullName;
private int withdrawNum; private int withdrawNum;
private double withdrawAmount; private double withdrawAmount;
} }

View File

@ -387,7 +387,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
t2.nick_name, t2.nick_name,
t2.phonenumber as phoneNumber, t2.phonenumber as phoneNumber,
t6.dept_name, t6.dept_name,
t6.dept_full_name,
t2.user_type as userType, t2.user_type as userType,
t1.scope, t1.scope,
t1.acc_status, t1.acc_status,

View File

@ -31,7 +31,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
su.nick_name, su.nick_name,
sd.dept_id, sd.dept_id,
sd.dept_name, sd.dept_name,
sd.dept_full_name,
count(1) AS withdraw_num, count(1) AS withdraw_num,
SUM(IFNULL( atwd.amount, 0)) AS withdraw_amount SUM(IFNULL( atwd.amount, 0)) AS withdraw_amount
from acc_trade_wallet_detail atwd from acc_trade_wallet_detail atwd

View File

@ -11,7 +11,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
su.phonenumber, su.phonenumber,
sd.dept_id, sd.dept_id,
sd.dept_name, sd.dept_name,
sd.dept_full_name,
at2.acc_all_bal, at2.acc_all_bal,
at2.trade_time, at2.trade_time,
at2.trade_type, at2.trade_type,