mitao
2024-05-16 4965b67d9e2a8e99894bd40aff7c88d695ec4040
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;
    }
}