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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.ruoyi.seatademo.domain.dto;
 
public class PlaceOrderRequest
{
    private Long userId;
 
    private Long productId;
 
    private Integer amount;
 
    public PlaceOrderRequest()
    {
    }
 
    public PlaceOrderRequest(Long userId, Long productId, Integer amount)
    {
        this.userId = userId;
        this.productId = productId;
        this.amount = amount;
    }
 
    public Long getUserId()
    {
        return userId;
    }
 
    public void setUserId(Long userId)
    {
        this.userId = userId;
    }
 
    public Long getProductId()
    {
        return productId;
    }
 
    public void setProductId(Long productId)
    {
        this.productId = productId;
    }
 
    public Integer getAmount()
    {
        return amount;
    }
 
    public void setAmount(Integer amount)
    {
        this.amount = amount;
    }
}