Showing
1 changed file
with
36 additions
and
1 deletions
@@ -3,5 +3,40 @@ package com.yoho.unions.dal.model; | @@ -3,5 +3,40 @@ package com.yoho.unions.dal.model; | ||
3 | /** | 3 | /** |
4 | * Created by shengguo.cai on 2018/5/15. | 4 | * Created by shengguo.cai on 2018/5/15. |
5 | */ | 5 | */ |
6 | -public class ShareUserOrderDatailBO { | 6 | +public class ShareUserOrderDatailBO{ |
7 | + private Integer channelType; | ||
8 | + private String unionType; | ||
9 | + private String unionName; | ||
10 | + private String orderCode; | ||
11 | + public Integer getChannelType() { | ||
12 | + return channelType; | ||
13 | + } | ||
14 | + | ||
15 | + public void setChannelType(Integer channelType) { | ||
16 | + this.channelType = channelType; | ||
17 | + } | ||
18 | + | ||
19 | + public String getUnionType() { | ||
20 | + return unionType; | ||
21 | + } | ||
22 | + | ||
23 | + public void setUnionType(String unionType) { | ||
24 | + this.unionType = unionType; | ||
25 | + } | ||
26 | + | ||
27 | + public String getUnionName() { | ||
28 | + return unionName; | ||
29 | + } | ||
30 | + | ||
31 | + public void setUnionName(String unionName) { | ||
32 | + this.unionName = unionName; | ||
33 | + } | ||
34 | + | ||
35 | + public String getOrderCode() { | ||
36 | + return orderCode; | ||
37 | + } | ||
38 | + | ||
39 | + public void setOrderCode(String orderCode) { | ||
40 | + this.orderCode = orderCode; | ||
41 | + } | ||
7 | } | 42 | } |
-
Please register or login to post a comment