This commit is contained in:
张良(004796)
2024-01-26 18:41:28 +08:00
parent 36eee916b1
commit 97ba46f6e4
16 changed files with 187 additions and 59 deletions

View File

@@ -13,8 +13,8 @@ public class GiftConsumerResp {
* 主播收益
*/
private Long anchorIncomeCoin;
private Long userId;
private Long fromUid;
private Long toUid;
private Long consumeLogId;
private Long traceId;
private boolean success;
}

View File

@@ -0,0 +1,15 @@
package com.ruoyi.cai.dto.commom.consumer;
import lombok.Data;
@Data
public class GuardConsumerResp {
/**
* 主播收益
*/
private Long anchorIncomeCoin;
private Long fromUid;
private Long toUid;
private Long consumeLogId;
private boolean success;
}