package com.boying.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.boying.common.BaseEntity;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import javax.persistence.Entity;
|
import java.time.LocalDateTime;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName PayLog.java
|
* @Description TODO
|
* @createTime 2023年12月12日 17:06:00
|
*/
|
@Data
|
@TableName("pay_log")
|
@javax.persistence.Table(name = "pay_log")
|
@Entity
|
@org.hibernate.annotations.Table(appliesTo = "pay_log", comment = "支付日志表")
|
@ApiModel(value = "支付日志表")
|
public class PayLog extends BaseEntity<PayLog> {
|
|
/**
|
* 出场表id
|
*/
|
private Integer outParkId;
|
/**
|
* 流水号
|
*/
|
private String code2;
|
|
|
/**
|
* 商户流水号
|
*/
|
private String txnOrderId;
|
|
/**
|
* 商户交易时间
|
*/
|
private String txnOrderTime;
|
|
/**
|
* 平台交易时间
|
*/
|
private String respTxnTime;
|
|
|
/**
|
* 缴款码
|
*/
|
private String payCode;
|
|
private String qrCode;
|
|
/**
|
* 支付时间
|
*/
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private LocalDateTime payTime;
|
}
|