Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
22537257f5
|
|
@ -30,6 +30,8 @@ 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 = "用户类别(展示)")
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ 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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ 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;
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ 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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -387,6 +387,7 @@ 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,
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ 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
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ 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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue