|
@@ -0,0 +1,66 @@
|
|
|
+package com.caimei.modules.order.entity;
|
|
|
+
|
|
|
+public class ReceipCouponInfoVo {
|
|
|
+ //劵类型 0活动券 1品类券 2用户专享券 3店铺券 4新用户券
|
|
|
+ private Integer couponType;
|
|
|
+ //机构名称
|
|
|
+ private String clubName;
|
|
|
+ //收款时间
|
|
|
+ private String confirmDate;
|
|
|
+
|
|
|
+ //优惠满减条件金额
|
|
|
+ private String touchPrice;
|
|
|
+
|
|
|
+ //优惠券面值金额
|
|
|
+ private String couponAmount;
|
|
|
+
|
|
|
+ private String mbOrderId;
|
|
|
+
|
|
|
+ public Integer getCouponType() {
|
|
|
+ return couponType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCouponType(Integer couponType) {
|
|
|
+ this.couponType = couponType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getClubName() {
|
|
|
+ return clubName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClubName(String clubName) {
|
|
|
+ this.clubName = clubName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getConfirmDate() {
|
|
|
+ return confirmDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConfirmDate(String confirmDate) {
|
|
|
+ this.confirmDate = confirmDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTouchPrice() {
|
|
|
+ return touchPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTouchPrice(String touchPrice) {
|
|
|
+ this.touchPrice = touchPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCouponAmount() {
|
|
|
+ return couponAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCouponAmount(String couponAmount) {
|
|
|
+ this.couponAmount = couponAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMbOrderId() {
|
|
|
+ return mbOrderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMbOrderId(String mbOrderId) {
|
|
|
+ this.mbOrderId = mbOrderId;
|
|
|
+ }
|
|
|
+}
|