mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-23 07:31:51 +08:00
37 lines
847 B
Java
37 lines
847 B
Java
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;
|
|
}
|