This commit is contained in:
777
2025-12-03 16:52:17 +08:00
parent 46a039a678
commit c91ede94a1
22 changed files with 555 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
package com.ruoyi.cai.dto;
import lombok.Data;
import java.io.Serializable;
@Data
public class AddPointAdminDto implements Serializable {
/**
* 员工ID
*/
private String usercode;
/**
* 调整的金额
*/
private Long point;
/**
* 是否参与分销
*/
private boolean distribution;
private String remark;
}

View File

@@ -19,6 +19,7 @@ public class RechargeConsumerResp {
private Long rechargeCoin;
private Long userId;
private Long consumeLogId;
private Long pointLogId;
private Long traceId;
private boolean success;
}