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;
| }
|
|