| | |
| | | package com.yeshi.fanli.vo.user;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Map;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import com.yeshi.fanli.entity.bus.user.UserSystemCoupon;
|
| | |
|
| | | public class UserSystemCouponVO extends UserSystemCoupon implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | // 顶部图片
|
| | | @Expose
|
| | | private String topPicture;
|
| | | |
| | | // 券名称
|
| | | @Expose
|
| | | private String couponName;
|
| | | // 券图片
|
| | | @Expose
|
| | | private String couponPicture;
|
| | | |
| | | // 券图片- 失效
|
| | | private String couponPictureInvalid;
|
| | | |
| | | // 券作用
|
| | | @Expose
|
| | | private String couponEffect;
|
| | | // 券规则
|
| | | @Expose
|
| | | private String couponRule;
|
| | | // 有效期
|
| | | @Expose
|
| | | private String couponTerm;
|
| | | // 使用中说明
|
| | | @Expose
|
| | | private String inUseExplain;
|
| | | |
| | | // 跳转按钮
|
| | | @Expose
|
| | | private Map<String, Object> jumpBtn;
|
| | | // 剩下天数
|
| | | @Expose
|
| | | private Map<String, Object> remainDays;
|
| | | |
| | |
|
| | | public String getTopPicture() {
|
| | | return topPicture;
|
| | | }
|
| | |
|
| | | public void setTopPicture(String topPicture) {
|
| | | this.topPicture = topPicture;
|
| | | }
|
| | |
|
| | | public String getCouponTerm() {
|
| | | return couponTerm;
|
| | | }
|
| | |
|
| | | public void setCouponTerm(String couponTerm) {
|
| | | this.couponTerm = couponTerm;
|
| | | }
|
| | |
|
| | | public Map<String, Object> getRemainDays() {
|
| | | return remainDays;
|
| | | }
|
| | |
|
| | | public void setRemainDays(Map<String, Object> remainDays) {
|
| | | this.remainDays = remainDays;
|
| | | }
|
| | |
|
| | | public String getCouponName() {
|
| | | return couponName;
|
| | | }
|
| | |
|
| | | public void setCouponName(String couponName) {
|
| | | this.couponName = couponName;
|
| | | }
|
| | |
|
| | | public String getCouponPicture() {
|
| | | return couponPicture;
|
| | | }
|
| | |
|
| | | public void setCouponPicture(String couponPicture) {
|
| | | this.couponPicture = couponPicture;
|
| | | }
|
| | |
|
| | | public String getCouponEffect() {
|
| | | return couponEffect;
|
| | | }
|
| | |
|
| | | public void setCouponEffect(String couponEffect) {
|
| | | this.couponEffect = couponEffect;
|
| | | }
|
| | |
|
| | | public String getCouponRule() {
|
| | | return couponRule;
|
| | | }
|
| | |
|
| | | public void setCouponRule(String couponRule) {
|
| | | this.couponRule = couponRule;
|
| | | }
|
| | |
|
| | | public Map<String, Object> getJumpBtn() {
|
| | | return jumpBtn;
|
| | | }
|
| | |
|
| | | public void setJumpBtn(Map<String, Object> jumpBtn) {
|
| | | this.jumpBtn = jumpBtn;
|
| | | }
|
| | |
|
| | | public String getInUseExplain() {
|
| | | return inUseExplain;
|
| | | }
|
| | |
|
| | | public void setInUseExplain(String inUseExplain) {
|
| | | this.inUseExplain = inUseExplain;
|
| | | }
|
| | |
|
| | | public String getCouponPictureInvalid() {
|
| | | return couponPictureInvalid;
|
| | | }
|
| | |
|
| | | public void setCouponPictureInvalid(String couponPictureInvalid) {
|
| | | this.couponPictureInvalid = couponPictureInvalid;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.vo.user; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | import com.yeshi.fanli.entity.bus.user.UserSystemCoupon; |
| | | |
| | | public class UserSystemCouponVO extends UserSystemCoupon implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | // 顶部图片 |
| | | @Expose |
| | | private String topPicture; |
| | | |
| | | // 券名称 |
| | | @Expose |
| | | private String couponName; |
| | | // 券图片 |
| | | @Expose |
| | | private String couponPicture; |
| | | |
| | | // 券图片- 失效 |
| | | private String couponPictureInvalid; |
| | | |
| | | // 券作用 |
| | | @Expose |
| | | private String couponEffect; |
| | | |
| | | // 券规则 |
| | | @Expose |
| | | private String couponRule; |
| | | |
| | | // 券规则-链接 |
| | | @Expose |
| | | private String couponRuleLink; |
| | | |
| | | // 有效期 |
| | | @Expose |
| | | private String couponTerm; |
| | | // 使用中说明 |
| | | @Expose |
| | | private String inUseExplain; |
| | | |
| | | // 跳转按钮 |
| | | @Expose |
| | | private Map<String, Object> jumpBtn; |
| | | |
| | | // 剩下天数 |
| | | @Expose |
| | | private Map<String, Object> remainDays; |
| | | |
| | | @Expose |
| | | private boolean popup; |
| | | |
| | | @Expose |
| | | private List<String> tips; |
| | | |
| | | // 使用中说明1.6.5 |
| | | @Expose |
| | | private List<String> tipsUsing; |
| | | |
| | | // 赠送中-分享口令 |
| | | @Expose |
| | | private String giveTips; |
| | | |
| | | |
| | | |
| | | public String getTopPicture() { |
| | | return topPicture; |
| | | } |
| | | |
| | | public void setTopPicture(String topPicture) { |
| | | this.topPicture = topPicture; |
| | | } |
| | | |
| | | public String getCouponTerm() { |
| | | return couponTerm; |
| | | } |
| | | |
| | | public void setCouponTerm(String couponTerm) { |
| | | this.couponTerm = couponTerm; |
| | | } |
| | | |
| | | public Map<String, Object> getRemainDays() { |
| | | return remainDays; |
| | | } |
| | | |
| | | public void setRemainDays(Map<String, Object> remainDays) { |
| | | this.remainDays = remainDays; |
| | | } |
| | | |
| | | public String getCouponName() { |
| | | return couponName; |
| | | } |
| | | |
| | | public void setCouponName(String couponName) { |
| | | this.couponName = couponName; |
| | | } |
| | | |
| | | public String getCouponPicture() { |
| | | return couponPicture; |
| | | } |
| | | |
| | | public void setCouponPicture(String couponPicture) { |
| | | this.couponPicture = couponPicture; |
| | | } |
| | | |
| | | public String getCouponEffect() { |
| | | return couponEffect; |
| | | } |
| | | |
| | | public void setCouponEffect(String couponEffect) { |
| | | this.couponEffect = couponEffect; |
| | | } |
| | | |
| | | public String getCouponRule() { |
| | | return couponRule; |
| | | } |
| | | |
| | | public void setCouponRule(String couponRule) { |
| | | this.couponRule = couponRule; |
| | | } |
| | | |
| | | public Map<String, Object> getJumpBtn() { |
| | | return jumpBtn; |
| | | } |
| | | |
| | | public void setJumpBtn(Map<String, Object> jumpBtn) { |
| | | this.jumpBtn = jumpBtn; |
| | | } |
| | | |
| | | public String getInUseExplain() { |
| | | return inUseExplain; |
| | | } |
| | | |
| | | public void setInUseExplain(String inUseExplain) { |
| | | this.inUseExplain = inUseExplain; |
| | | } |
| | | |
| | | public String getCouponPictureInvalid() { |
| | | return couponPictureInvalid; |
| | | } |
| | | |
| | | public void setCouponPictureInvalid(String couponPictureInvalid) { |
| | | this.couponPictureInvalid = couponPictureInvalid; |
| | | } |
| | | |
| | | public String getCouponRuleLink() { |
| | | return couponRuleLink; |
| | | } |
| | | |
| | | public void setCouponRuleLink(String couponRuleLink) { |
| | | this.couponRuleLink = couponRuleLink; |
| | | } |
| | | |
| | | public List<String> getTips() { |
| | | return tips; |
| | | } |
| | | |
| | | public void setTips(List<String> tips) { |
| | | this.tips = tips; |
| | | } |
| | | |
| | | public boolean isPopup() { |
| | | return popup; |
| | | } |
| | | |
| | | public void setPopup(boolean popup) { |
| | | this.popup = popup; |
| | | } |
| | | |
| | | public String getGiveTips() { |
| | | return giveTips; |
| | | } |
| | | |
| | | public void setGiveTips(String giveTips) { |
| | | this.giveTips = giveTips; |
| | | } |
| | | |
| | | public List<String> getTipsUsing() { |
| | | return tipsUsing; |
| | | } |
| | | |
| | | public void setTipsUsing(List<String> tipsUsing) { |
| | | this.tipsUsing = tipsUsing; |
| | | } |
| | | } |