Compare commits
2 Commits
7c72e60a32
...
2ed121926b
| Author | SHA1 | Date | |
|---|---|---|---|
| 2ed121926b | |||
| c07367ea53 |
@@ -27,4 +27,7 @@ public class TenantBalancePageReqVO extends PageParam {
|
||||
|
||||
@Schema(description = "冻结金额")
|
||||
private BigDecimal frozenAmt;
|
||||
|
||||
@Schema(description = "可提现金额")
|
||||
private BigDecimal withdrawableBalance;
|
||||
}
|
||||
@@ -32,4 +32,7 @@ public class TenantBalanceRespVO {
|
||||
|
||||
@Schema(description = "冻结金额")
|
||||
private BigDecimal frozenAmt;
|
||||
|
||||
@Schema(description = "可提现金额")
|
||||
private BigDecimal withdrawableBalance;
|
||||
}
|
||||
@@ -31,4 +31,6 @@ public class TenantBalanceSaveReqVO {
|
||||
@Schema(description = "冻结金额")
|
||||
private BigDecimal frozenAmt;
|
||||
|
||||
@Schema(description = "可提现金额")
|
||||
private BigDecimal withdrawableBalance;
|
||||
}
|
||||
@@ -34,9 +34,6 @@ public class KeyboardUserInviteCodesPageReqVO extends PageParam {
|
||||
@Schema(description = "邀请码已使用次数", example = "25037")
|
||||
private Integer usedCount;
|
||||
|
||||
@Schema(description = "邀请码所属系统用户ID(邀请人)", example = "20047")
|
||||
private Long systemUserId;
|
||||
|
||||
@Schema(description = "邀请码所属租户", example = "17355")
|
||||
private Long ownerTenantId;
|
||||
|
||||
|
||||
@@ -43,16 +43,12 @@ public class KeyboardUserInviteCodesRespVO {
|
||||
@Schema(description = "邀请码已使用次数", requiredMode = Schema.RequiredMode.REQUIRED, example = "25037")
|
||||
@ExcelProperty("邀请码已使用次数")
|
||||
private Integer usedCount;
|
||||
|
||||
@Schema(description = "邀请码所属系统用户ID(邀请人)", example = "20047")
|
||||
@ExcelProperty("邀请码所属系统用户ID(邀请人)")
|
||||
private Long systemUserId;
|
||||
|
||||
|
||||
@Schema(description = "邀请码所属租户", example = "17355")
|
||||
@ExcelProperty("邀请码所属租户")
|
||||
private Long ownerTenantId;
|
||||
|
||||
@Schema(description = "邀请码所属系统用户", example = "772")
|
||||
@Schema(description = "邀请码所属系统用户ID(邀请人)", example = "772")
|
||||
@ExcelProperty("邀请码所属系统用户")
|
||||
private Long ownerSystemUserId;
|
||||
|
||||
|
||||
@@ -40,9 +40,6 @@ public class KeyboardUserInviteCodesSaveReqVO {
|
||||
@NotNull(message = "邀请码已使用次数不能为空")
|
||||
private Integer usedCount;
|
||||
|
||||
@Schema(description = "邀请码所属系统用户ID(邀请人)", example = "20047")
|
||||
private Long systemUserId;
|
||||
|
||||
@Schema(description = "邀请码所属租户", example = "17355")
|
||||
private Long ownerTenantId;
|
||||
|
||||
|
||||
@@ -49,4 +49,5 @@ public class TenantBalanceDO extends BaseDO {
|
||||
*/
|
||||
private BigDecimal frozenAmt;
|
||||
|
||||
private BigDecimal withdrawableBalance;
|
||||
}
|
||||
@@ -56,10 +56,6 @@ public class KeyboardUserInviteCodesDO {
|
||||
* 邀请码已使用次数
|
||||
*/
|
||||
private Integer usedCount;
|
||||
/**
|
||||
* 邀请码所属系统用户ID(邀请人)
|
||||
*/
|
||||
private Long systemUserId;
|
||||
/**
|
||||
* 邀请码所属租户
|
||||
*/
|
||||
|
||||
@@ -26,7 +26,6 @@ public interface KeyboardUserInviteCodesMapper extends BaseMapperX<KeyboardUserI
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getExpiresAt, reqVO.getExpiresAt())
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getMaxUses, reqVO.getMaxUses())
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getUsedCount, reqVO.getUsedCount())
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getSystemUserId, reqVO.getSystemUserId())
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getOwnerTenantId, reqVO.getOwnerTenantId())
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getOwnerSystemUserId, reqVO.getOwnerSystemUserId())
|
||||
.eqIfPresent(KeyboardUserInviteCodesDO::getInviteType, reqVO.getInviteType())
|
||||
|
||||
Reference in New Issue
Block a user