rentaiming
2024-07-10 b29becf95484be48aa09e87fcc7cc19f94cf9c81
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 ReduceStockRequest
{
    private Long productId;
 
    private Integer amount;
 
    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;
    }
}