| | |
| | | import com.boying.common.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Transient; |
| | | import java.time.LocalDateTime; |
| | |
| | | private LocalDateTime enterTime; |
| | | |
| | | /** |
| | | * 支付时间 |
| | | */ |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime payTime; |
| | | |
| | | /** |
| | | * 订单号 |
| | | */ |
| | | private String code; |
| | |
| | | */ |
| | | private String code2; |
| | | |
| | | |
| | | /** |
| | | * 商户流水号 |
| | | */ |
| | | private String txnOrderId; |
| | | |
| | | /** |
| | | * 商户交易时间 |
| | | */ |
| | | private String txnOrderTime; |
| | | |
| | | /** |
| | | * 平台交易时间 |
| | | */ |
| | | private String respTxnTime; |
| | | |
| | | |
| | | /** |
| | | * 缴款码 |
| | | */ |
| | | private String payCode; |
| | | |
| | | private String qrCode; |
| | | |
| | | |
| | | /** |
| | | * 0:未缴费 1:缴费 |
| | |
| | | */ |
| | | private int status3; |
| | | |
| | | @ApiModelProperty(value = "图片id") |
| | | @Column(columnDefinition = "int comment '图片id'") |
| | | private Integer imgId; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String parkName; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String imgPath; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private String date; |
| | | } |