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.
41 lines
1.1 KiB
41 lines
1.1 KiB
package com.cyjd.rights.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Accessors(chain = true)
|
|
@TableName("tb_refund_order")
|
|
public class RefundOrderEntity {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
//手机号
|
|
private String mobile;
|
|
|
|
//退款时间
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING,pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime refundTime;
|
|
|
|
//商户订单号 对应支付表的other_order_id
|
|
private String outTradeNo;
|
|
|
|
//退款订单号,传了这个支付宝会保证同样的退款请求号多次请求只会退一次
|
|
private String outRequestNo;
|
|
|
|
//退款金额
|
|
private String refundPrice;
|
|
|
|
//链接Id
|
|
private Integer linkId;
|
|
|
|
//0失败 1成功
|
|
private Integer status;
|
|
}
|
|
|