huliguo
2025-08-01 8059e9b991c15edbac508e6b658a0d9571d11b1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.system.api.model;
 
import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;
 
/**
 * @author zhibing.pu
 * @date 2025/7/29 10:54
 */
@Data
public class AddIntegralRecordVo {
    private Integer integral;
 
    private Long userId;
 
    private String orderId;
}