xuhy
17 小时以前 f2c62765234acba5c4eb0ecfdeb8b54e4a95da75
ruoyi-system/src/main/java/com/ruoyi/system/model/TErpProcurement.java
@@ -1,6 +1,7 @@
package com.ruoyi.system.model;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -48,11 +49,51 @@
    @ApiModelProperty(value = "支付流水号")
    @TableField("pay_transaction_id")
    private String payTransactionId;
        private String payTransactionId;
    @ApiModelProperty(value = "状态 1=草稿 2=待支付 3=待发货 4=已发货 5=已入库 6=已取消")
    @TableField("status")
    private Integer status;
    @ApiModelProperty(value = "发送时间")
    @TableField("send_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime sendTime;
    @ApiModelProperty(value = "入库操作人")
    private String warehousingUserId;
    @ApiModelProperty(value = "支付时间")
    @TableField("pay_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime payTime;
    @ApiModelProperty(value = "退款编号")
    @TableField("refund_no")
    private String refundNo;
    @ApiModelProperty(value = "退款时间")
    @TableField("refund_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime refundTime;
    @ApiModelProperty(value = "退款流水号")
    @TableField("refund_log_no")
    private String refundLogNo;
    @ApiModelProperty(value = "终端号")
    @TableField("term_no")
    private String termNo;
    @ApiModelProperty(value = "钱包类型")
    @TableField("account_type")
    private String accountType;
    @ApiModelProperty(value = "接入方式")
    @TableField("trans_type")
    private String transType;
    @ApiModelProperty(value = "分账流水号")
    @TableField("separate_no")
    private String separateNo;
}