admin
2022-08-25 c9db68e33f90231b064b8864fc69ccf7d25f5e0b
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.ks.lijin.pojo.DO;
 
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@Table("tlj_goofs_depot_first_order")
public class LiJinGoofsDepotFirstOrder implements Serializable {
    @Column(name = "gd_goods_id")
    private String goodsId;
 
    @Column(name = "gd_money")
    private BigDecimal money;
 
    @Column(name = "gd_state")
    private Integer state;
 
    @Column(name = "gd_creator_id")
    private Long creatorId;
 
    @Column(name = "gd_create_time")
    private Date createTime;
 
    @Column(name = "gd_updator_id")
    private Long updatorId;
 
    @Column(name = "gd_update_time")
    private Date updateTime;
 
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Long getCreatorId() {
        return creatorId;
    }
 
    public void setCreatorId(Long creatorId) {
        this.creatorId = creatorId;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Long getUpdatorId() {
        return updatorId;
    }
 
    public void setUpdatorId(Long updatorId) {
        this.updatorId = updatorId;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}