shiyj1101
2021-08-05 e57e32fc43da31917912eebb4e47d4e50df1a9e9
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.java110.po.resourceSupplier;
 
import java.io.Serializable;
import java.util.Date;
 
public class ResourceSupplierPo implements Serializable {
 
    private String supplierName;
    private String createUserId;
    private String address;
    private String contactName;
    private String rsId;
    private String createUserName;
    private String remark;
    private String storeId;
    private String accountBank;
    private String tel;
    private String bankAccountNumber;
 
    public String getSupplierName() {
        return supplierName;
    }
 
    public void setSupplierName(String supplierName) {
        this.supplierName = supplierName;
    }
 
    public String getCreateUserId() {
        return createUserId;
    }
 
    public void setCreateUserId(String createUserId) {
        this.createUserId = createUserId;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getContactName() {
        return contactName;
    }
 
    public void setContactName(String contactName) {
        this.contactName = contactName;
    }
 
    public String getRsId() {
        return rsId;
    }
 
    public void setRsId(String rsId) {
        this.rsId = rsId;
    }
 
    public String getCreateUserName() {
        return createUserName;
    }
 
    public void setCreateUserName(String createUserName) {
        this.createUserName = createUserName;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getStoreId() {
        return storeId;
    }
 
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
 
    public String getAccountBank() {
        return accountBank;
    }
 
    public void setAccountBank(String accountBank) {
        this.accountBank = accountBank;
    }
 
    public String getTel() {
        return tel;
    }
 
    public void setTel(String tel) {
        this.tel = tel;
    }
 
    public String getBankAccountNumber() {
        return bankAccountNumber;
    }
 
    public void setBankAccountNumber(String bankAccountNumber) {
        this.bankAccountNumber = bankAccountNumber;
    }
 
 
}