26 lines
391 B
Java
26 lines
391 B
Java
package com.ghy.payment.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class FinancialCountResponse {
|
|
|
|
private String orderCode;
|
|
|
|
private String createTime;
|
|
|
|
private String payCount;
|
|
|
|
private String incomeCount;
|
|
|
|
private String flag;
|
|
|
|
private Integer payeeId;
|
|
|
|
private List<Integer> financialDetailTypes;
|
|
|
|
private String billingState;
|
|
}
|