mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-24 16:03:42 +08:00
接入运营商提现开票待办闭环
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.jsowell.pile.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.jsowell.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 运营商提现开票信息 clearing_withdraw_invoice。
|
||||
*/
|
||||
@Data
|
||||
public class ClearingWithdrawInvoice extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Long id;
|
||||
private String withdrawCode;
|
||||
private String merchantId;
|
||||
private String invoiceStatus;
|
||||
private String invoiceNumber;
|
||||
private String voucherUrl;
|
||||
private Long submittedBy;
|
||||
private String submittedName;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date submittedTime;
|
||||
|
||||
private Long closedBy;
|
||||
private String closedName;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date closedTime;
|
||||
|
||||
private String closeReason;
|
||||
private String delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user