You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							56 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							56 lines
						
					
					
						
							1.5 KiB
						
					
					
				package com.ynxbd.common.bean;
 | 
						|
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
import java.math.BigDecimal;
 | 
						|
 | 
						|
/**
 | 
						|
 * HIS对账记录
 | 
						|
 *
 | 
						|
 * @Author wsq
 | 
						|
 * @Date 2021/4/7 13:36
 | 
						|
 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | 
						|
 */
 | 
						|
@Setter
 | 
						|
@Getter
 | 
						|
@ToString
 | 
						|
@NoArgsConstructor
 | 
						|
public class HisTransaction {
 | 
						|
    // 交易类别
 | 
						|
    private String transactionType;
 | 
						|
    //  确认日期(记账日期/对账日期)
 | 
						|
    private String transactionDate;
 | 
						|
    // 交易时间
 | 
						|
    private String transactionTime;
 | 
						|
    // 预约日期
 | 
						|
    private String reservationDate;
 | 
						|
    // 取号日期
 | 
						|
    private String takeDate;
 | 
						|
    // 取号时间
 | 
						|
    private String takeTime;
 | 
						|
    // 交易金额
 | 
						|
    private BigDecimal transactionMoney;
 | 
						|
    // 交易平台
 | 
						|
    private String transactionPlatform;
 | 
						|
    // 平台正交易流水号
 | 
						|
    private String platformPositiveTransNo;
 | 
						|
    // 平台负交易流水号
 | 
						|
    private String platformNegativeTransNo;
 | 
						|
    // HIS正交易流水号
 | 
						|
    private String hisPositiveTransNo;
 | 
						|
    // HIS负交易流水号(负的为取消预约)
 | 
						|
    private String hisNegativeTransNo;
 | 
						|
    //调用方交易日期
 | 
						|
    private String callOperDate;
 | 
						|
    // HIS交易日期
 | 
						|
    private String hisOperDate;
 | 
						|
    // 交易金额
 | 
						|
    private BigDecimal money;
 | 
						|
    // 交易流水号
 | 
						|
    private String transNo;
 | 
						|
    // 发票流水号
 | 
						|
    private String fpNum;
 | 
						|
}
 | 
						|
 |