package org.ruoyi.domain.vo;
|
|
import java.math.BigDecimal;
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
import lombok.Data;
|
import org.ruoyi.domain.ChatPayOrder;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
|
|
|
|
/**
|
* 支付订单视图对象 chat_pay_order
|
*
|
* @author ageerle
|
* @date 2025-04-08
|
*/
|
@Data
|
@ExcelIgnoreUnannotated
|
@AutoMapper(target = ChatPayOrder.class)
|
public class ChatPayOrderVo implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@ExcelProperty(value = "主键")
|
private Long id;
|
|
/**
|
* 订单编号
|
*/
|
@ExcelProperty(value = "订单编号")
|
private String orderNo;
|
|
/**
|
* 订单名称
|
*/
|
@ExcelProperty(value = "订单名称")
|
private String orderName;
|
|
/**
|
* 金额
|
*/
|
@ExcelProperty(value = "金额")
|
private BigDecimal amount;
|
|
/**
|
* 支付状态
|
*/
|
@ExcelProperty(value = "支付状态")
|
private String paymentStatus;
|
|
/**
|
* 支付方式
|
*/
|
@ExcelProperty(value = "支付方式")
|
private String paymentMethod;
|
|
/**
|
* 用户ID
|
*/
|
@ExcelProperty(value = "用户ID")
|
private Long userId;
|
|
/**
|
* 备注
|
*/
|
@ExcelProperty(value = "备注")
|
private String remark;
|
|
|
}
|