From b2bda46d7d52efdbba9e26a5560de8690311eba1 Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Mon, 31 Oct 2016 18:52:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=A0=A1=E9=AA=8C=E5=AE=9E?= =?UTF-8?q?=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/platform/entities/CheckoutEntity.java | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/com/platform/entities/CheckoutEntity.java diff --git a/src/com/platform/entities/CheckoutEntity.java b/src/com/platform/entities/CheckoutEntity.java new file mode 100644 index 00000000..c9316fba --- /dev/null +++ b/src/com/platform/entities/CheckoutEntity.java @@ -0,0 +1,56 @@ +package com.platform.entities; + +public class CheckoutEntity extends PreDataInfo { + + /** 验证结果 */ + private String checkResult; + + /** 支付信息表 */ + private String payResult; + + /** 执行信息表 */ + private String execResult; + + /** + * @return the checkResult + */ + public String getCheckResult() { + return checkResult; + } + + /** + * @param checkResult the checkResult to set + */ + public void setCheckResult(String checkResult) { + this.checkResult = checkResult; + } + + /** + * @return the payResult + */ + public String getPayResult() { + return payResult; + } + + /** + * @param payResult the payResult to set + */ + public void setPayResult(String payResult) { + this.payResult = payResult; + } + + /** + * @return the execResult + */ + public String getExecResult() { + return execResult; + } + + /** + * @param execResult the execResult to set + */ + public void setExecResult(String execResult) { + this.execResult = execResult; + } + +}