mitao
2025-03-06 01d6fa48a0de7a21988e89f71721b6b85e53b517
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ruoyi.seatademo.domain.dto;
 
public class ReduceBalanceRequest
{
    private Long userId;
 
    private Integer price;
 
    public Long getUserId()
    {
        return userId;
    }
 
    public void setUserId(Long userId)
    {
        this.userId = userId;
    }
 
    public Integer getPrice()
    {
        return price;
    }
 
    public void setPrice(Integer price)
    {
        this.price = price;
    }
}