|
@@ -16,6 +16,8 @@ import java.util.Date;
|
|
public class CmCouponClub extends DataEntity<CmCouponClub> {
|
|
public class CmCouponClub extends DataEntity<CmCouponClub> {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ private String spName; // 分享人姓名
|
|
private Integer userId; // 机构用户Id
|
|
private Integer userId; // 机构用户Id
|
|
private Integer couponId; // 优惠券id
|
|
private Integer couponId; // 优惠券id
|
|
private Integer orderId; // 订单id
|
|
private Integer orderId; // 订单id
|
|
@@ -42,6 +44,14 @@ public class CmCouponClub extends DataEntity<CmCouponClub> {
|
|
super(id);
|
|
super(id);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getSpName() {
|
|
|
|
+ return spName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSpName(String spName) {
|
|
|
|
+ this.spName = spName;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getUserId() {
|
|
public Integer getUserId() {
|
|
return userId;
|
|
return userId;
|
|
}
|
|
}
|