123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- package com.caimei.modules.order.entity;
- import java.io.Serializable;
- /**
- * Description
- *
- * @author : Charles
- * @date : 2021/7/30
- */
- public class PayParamBo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 用户Id
- */
- private Integer userId;
- /**
- * 订单Id
- */
- private Integer orderId;
- /**
- * 二手发布商品id
- */
- private Integer productId;
- /**
- * 会员购买记录Id
- */
- private Integer vipRecordId;
- /**
- * 优惠券购买记录id
- */
- private Integer couponRecordId;
- /**
- * 会员套餐id
- */
- private Integer vipId;
- /**
- * 支付金额,单位分,必须大于2
- */
- private Integer payAmount;
- /**
- * double支付金额,单位元
- */
- private Double AllPay;
- /**
- * 支付方式,
- * 银联:UNIONPAY,
- * 微信:WEIXIN,
- * 支付宝:ALIPAY,
- * 银联转账:TRANSFER
- */
- private String payWay;
- /**
- * 支付类型(现阶段主要是区分微信支付)
- * 微信小程序支付: MINIAPP_WEIXIN
- * 微信公众号支付: JSAPI_WEIXIN
- */
- private String payType;
- /**
- * 微信小程序code,微信小程序支付使用
- */
- private String code;
- /**
- * 微信公众号state参数
- */
- private String state;
- /**
- * 页面回调地址
- */
- private String returnUrl;
- /**
- * 微信openId
- */
- private String openId;
- /**
- * 异步通知回调
- */
- private String notifyUrl;
- /**
- * 银行编码(银联支付使用)
- */
- private String bankCode;
- /**
- * 用户类型(银联支付使用)
- * 企业:ENTERPRISE
- * 个人:USER
- */
- private String userType;
- /**
- * 购买优惠券id
- */
- private Integer couponId;
- /**
- * 1小程序 2网站
- */
- private Integer source;
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public Double getAllPay() {
- return AllPay;
- }
- public void setAllPay(Double allPay) {
- AllPay = allPay;
- }
- public Integer getUserId() {
- return userId;
- }
- public void setUserId(Integer userId) {
- this.userId = userId;
- }
- public Integer getOrderId() {
- return orderId;
- }
- public void setOrderId(Integer orderId) {
- this.orderId = orderId;
- }
- public Integer getProductId() {
- return productId;
- }
- public void setProductId(Integer productId) {
- this.productId = productId;
- }
- public Integer getVipRecordId() {
- return vipRecordId;
- }
- public void setVipRecordId(Integer vipRecordId) {
- this.vipRecordId = vipRecordId;
- }
- public Integer getCouponRecordId() {
- return couponRecordId;
- }
- public void setCouponRecordId(Integer couponRecordId) {
- this.couponRecordId = couponRecordId;
- }
- public Integer getVipId() {
- return vipId;
- }
- public void setVipId(Integer vipId) {
- this.vipId = vipId;
- }
- public Integer getPayAmount() {
- return payAmount;
- }
- public void setPayAmount(Integer payAmount) {
- this.payAmount = payAmount;
- }
- public String getPayWay() {
- return payWay;
- }
- public void setPayWay(String payWay) {
- this.payWay = payWay;
- }
- public String getPayType() {
- return payType;
- }
- public void setPayType(String payType) {
- this.payType = payType;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getReturnUrl() {
- return returnUrl;
- }
- public void setReturnUrl(String returnUrl) {
- this.returnUrl = returnUrl;
- }
- public String getOpenId() {
- return openId;
- }
- public void setOpenId(String openId) {
- this.openId = openId;
- }
- public String getNotifyUrl() {
- return notifyUrl;
- }
- public void setNotifyUrl(String notifyUrl) {
- this.notifyUrl = notifyUrl;
- }
- public String getBankCode() {
- return bankCode;
- }
- public void setBankCode(String bankCode) {
- this.bankCode = bankCode;
- }
- public String getUserType() {
- return userType;
- }
- public void setUserType(String userType) {
- this.userType = userType;
- }
- public Integer getCouponId() {
- return couponId;
- }
- public void setCouponId(Integer couponId) {
- this.couponId = couponId;
- }
- public Integer getSource() {
- return source;
- }
- public void setSource(Integer source) {
- this.source = source;
- }
- }
|