提交merge1.3
This commit is contained in:
@@ -102,10 +102,14 @@ public class PaymentReconciliation extends HisBaseEntity {
|
||||
private String ybSettleIds;// 记录医保结算id
|
||||
|
||||
/** 医保清算标志 */
|
||||
<<<<<<< HEAD
|
||||
private Integer ybClearFlag;//默认值0 未清算
|
||||
|
||||
/** 退号/退费原因 */
|
||||
@TableField("refund_reason")
|
||||
private String refundReason;
|
||||
|
||||
=======
|
||||
private Integer ybClearFlag;// 默认值0 未清算
|
||||
>>>>>>> v1.3
|
||||
}
|
||||
@@ -3,6 +3,12 @@ package com.openhis.financial.domain;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
import com.core.common.core.domain.HisBaseEntity;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
>>>>>>> v1.3
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
@@ -11,15 +17,26 @@ import lombok.experimental.Accessors;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
<<<<<<< HEAD
|
||||
* 第三方支付回调实体(下方备注信息以中银支付为模板)
|
||||
=======
|
||||
* 第三方支付回调实体(下方备注信息以中银支付为模板,其中会产生冗余字段或者重复字段,这些字段均以第三方平台返回内容为主)
|
||||
>>>>>>> v1.3
|
||||
*/
|
||||
@Data
|
||||
@TableName("fin_three_part_pay_call_back")
|
||||
@Accessors(chain = true)
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
<<<<<<< HEAD
|
||||
public class ThreePartPayCallBack {
|
||||
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
=======
|
||||
public class ThreePartPayCallBack extends HisBaseEntity {
|
||||
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
>>>>>>> v1.3
|
||||
private BigDecimal id;
|
||||
|
||||
/**
|
||||
@@ -130,15 +147,93 @@ public class ThreePartPayCallBack {
|
||||
/**
|
||||
* 付款主键ID
|
||||
*/
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
>>>>>>> v1.3
|
||||
private Long paymentId;
|
||||
|
||||
/**
|
||||
* 前台UI序号
|
||||
*/
|
||||
<<<<<<< HEAD
|
||||
private Long index;
|
||||
=======
|
||||
private Long payIndex;
|
||||
>>>>>>> v1.3
|
||||
|
||||
/**
|
||||
* 时间戳(中银建议)
|
||||
*/
|
||||
<<<<<<< HEAD
|
||||
private Long time;
|
||||
=======
|
||||
private Long payTime;
|
||||
|
||||
/**
|
||||
* 交易日
|
||||
*/
|
||||
private String settleDate;
|
||||
/**
|
||||
* 交易时间
|
||||
*/
|
||||
private String settleTime;
|
||||
/**
|
||||
* 清算时间
|
||||
*/
|
||||
private String clearDate;
|
||||
/**
|
||||
* 校验数据
|
||||
*/
|
||||
private String secretKey;
|
||||
/**
|
||||
* 卡类型
|
||||
*/
|
||||
private String cardType;
|
||||
/**
|
||||
* 第三方优惠说明
|
||||
*/
|
||||
private String otherMsg;
|
||||
/**
|
||||
* 第三方平台
|
||||
*/
|
||||
private String otherPlatform;
|
||||
/**
|
||||
* 支付方式
|
||||
*/
|
||||
private String payMethod;
|
||||
/**
|
||||
* 查询结果
|
||||
*/
|
||||
private String queryResult;
|
||||
/**
|
||||
* 查询结果
|
||||
*/
|
||||
private String queryResultMsg;
|
||||
/**
|
||||
* 请求执行结果
|
||||
*/
|
||||
private String executeResult;
|
||||
/**
|
||||
* 支付结果
|
||||
*/
|
||||
private String payResult;
|
||||
/**
|
||||
* 卡号
|
||||
*/
|
||||
private String accountNo;
|
||||
/**
|
||||
* 凭证号
|
||||
*/
|
||||
private String receiptNo;
|
||||
/**
|
||||
* 错误信息
|
||||
*/
|
||||
private String errMsg;
|
||||
/**
|
||||
* 批次号
|
||||
*/
|
||||
private String lotNo;
|
||||
|
||||
>>>>>>> v1.3
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user