mitao
2024-05-17 2780d177d14b14ab2d87bcf48ff9af6d0fe18ec2
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;
    }
}