38 lines
885 B
Java
38 lines
885 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 订单退款进度日志表
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-29 15:27:44
|
|
*/
|
|
@Data
|
|
@TableName("buy_order_refund_log")
|
|
public class BuyOrderRefundLog implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId
|
|
private Integer id;
|
|
private Integer refundId;
|
|
private Date createTime;
|
|
private int type;
|
|
private int status;
|
|
private int reason;
|
|
@TableField(exist = false)
|
|
private String title;
|
|
|
|
@TableField(exist = false)
|
|
private String content;
|
|
|
|
}
|