BoMerchantMember.java
785 Bytes
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
package com.java110.dto.store;
import com.java110.dto.DefaultBoEntity;
/**
* 商户成员过程实例
* Created by wuxw on 2017/8/30.
*/
public class BoMerchantMember extends DefaultBoEntity {
private String merchantId;
private String memberId;
private String memberType;
public String getMerchantId() {
return merchantId;
}
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
public String getMemberId() {
return memberId;
}
public void setMemberId(String memberId) {
this.memberId = memberId;
}
public String getMemberType() {
return memberType;
}
public void setMemberType(String memberType) {
this.memberType = memberType;
}
}