kongdeqiang
2024-04-09 fb050c0dafa5363a73540dd9e52b78487e25ba0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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;
}