| | |
| | | package com.java110.dto.payment; |
| | | |
| | | import com.java110.dto.integral.GiftIntegralDto; |
| | | import org.springframework.http.ResponseEntity; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | * 封装实体类 |
| | | */ |
| | | public class PaymentOrderDto implements Serializable{ |
| | | |
| | | public static final String SHARE_ACCT = "Y"; |
| | | |
| | | private String orderId; |
| | | |
| | |
| | | private String appId; |
| | | |
| | | private String openId; |
| | | |
| | | private String userId; |
| | | |
| | | private String isShare; |
| | | |
| | | private String cycles; |
| | | |
| | | private String useIntegral; |
| | | |
| | | private GiftIntegralDto giftIntegralDto; |
| | | |
| | | |
| | | private ResponseEntity<String> responseEntity; |
| | |
| | | public void setTransactionId(String transactionId) { |
| | | this.transactionId = transactionId; |
| | | } |
| | | |
| | | public String getUserId() { |
| | | return userId; |
| | | } |
| | | |
| | | public void setUserId(String userId) { |
| | | this.userId = userId; |
| | | } |
| | | |
| | | public String getIsShare() { |
| | | return isShare; |
| | | } |
| | | |
| | | public void setIsShare(String isShare) { |
| | | this.isShare = isShare; |
| | | } |
| | | |
| | | public GiftIntegralDto getGiftIntegralDto() { |
| | | return giftIntegralDto; |
| | | } |
| | | |
| | | public void setGiftIntegralDto(GiftIntegralDto giftIntegralDto) { |
| | | this.giftIntegralDto = giftIntegralDto; |
| | | } |
| | | |
| | | public String getCycles() { |
| | | return cycles; |
| | | } |
| | | |
| | | public void setCycles(String cycles) { |
| | | this.cycles = cycles; |
| | | } |
| | | |
| | | public String getUseIntegral() { |
| | | return useIntegral; |
| | | } |
| | | |
| | | public void setUseIntegral(String useIntegral) { |
| | | this.useIntegral = useIntegral; |
| | | } |
| | | } |