53 lines
948 B
Java
53 lines
948 B
Java
package com.engine.salary.entity.taxapiflow.response;
|
|
|
|
import com.engine.salary.entity.taxagent.response.SzyhResponseHead;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 查询流量统计
|
|
*
|
|
* @author chengliming
|
|
* @date 2022-11-16 3:17 PM
|
|
**/
|
|
@Data
|
|
public class QueryAccountBalanceResponse {
|
|
|
|
private SzyhResponseHead head;
|
|
|
|
private Body body;
|
|
|
|
@Data
|
|
public static class Body {
|
|
/**
|
|
* 已购买总流量
|
|
**/
|
|
private String total;
|
|
/**
|
|
* 已使用流量
|
|
**/
|
|
private String used;
|
|
/**
|
|
* 剩余流量
|
|
**/
|
|
private String surplus;
|
|
/**
|
|
* 使用明细
|
|
*/
|
|
private List<Detail> taxList;
|
|
}
|
|
|
|
@Data
|
|
public static class Detail {
|
|
/**
|
|
* 税号
|
|
*/
|
|
private String taxNum;
|
|
/**
|
|
* 已使用流量
|
|
*/
|
|
private String used;
|
|
}
|
|
}
|