Administrator
2025-04-23 595b7935a30e84fba1bc3561d05f9d19d3e32e1f
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
52
53
54
55
package com.taoke.autopay.dto;
 
/**
 * @author hxh
 * @title: DYSubsidyDto
 * @description: TODO
 * @date 2024/7/11 18:22
 */
public class DYSubsidyDto {
 
 
    /**
     * goodsId : 3694557421864353931
     * goodsPrice : 210
     * subsidyAmount : 210
     * status : offLine
     */
 
    private String goodsId;
    private int goodsPrice;
    private int subsidyAmount;
    private String status;
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public int getGoodsPrice() {
        return goodsPrice;
    }
 
    public void setGoodsPrice(int goodsPrice) {
        this.goodsPrice = goodsPrice;
    }
 
    public int getSubsidyAmount() {
        return subsidyAmount;
    }
 
    public void setSubsidyAmount(int subsidyAmount) {
        this.subsidyAmount = subsidyAmount;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
}