ghy-all/ghy-payment/src/main/java/com/ghy/payment/response/FinancialCountResponse.java

26 lines
391 B
Java
Raw Normal View History

2022-06-01 18:11:29 +08:00
package com.ghy.payment.response;
import lombok.Data;
2022-11-28 01:27:09 +08:00
import java.util.List;
2022-06-01 18:11:29 +08:00
@Data
public class FinancialCountResponse {
2025-03-24 13:25:38 +08:00
private String orderCode;
2022-06-01 18:11:29 +08:00
private String createTime;
private String payCount;
private String incomeCount;
private String flag;
2022-11-28 01:27:09 +08:00
private Integer payeeId;
private List<Integer> financialDetailTypes;
private String billingState;
2022-06-01 18:11:29 +08:00
}