You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
777 B
56 lines
777 B
2 years ago
|
package com.dxhy.extend.model;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 报表逾期发票查询的返回对象
|
||
|
*
|
||
|
* @author kangzq
|
||
|
*/
|
||
|
@Data
|
||
|
public class ExtBbycfpbbRespVO implements Serializable {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* ID
|
||
|
*/
|
||
|
private String id;
|
||
|
|
||
|
/**
|
||
|
* 序号
|
||
|
*/
|
||
|
private String xh;
|
||
|
/**
|
||
|
* 合计金额
|
||
|
*/
|
||
|
private String hjje;
|
||
|
/**
|
||
|
* 合计税额
|
||
|
*/
|
||
|
private String hjse;
|
||
|
/**
|
||
|
* 数量
|
||
|
*/
|
||
|
private String hjsl;
|
||
|
|
||
|
/**
|
||
|
* 购方税号
|
||
|
*/
|
||
|
private String gfsh;
|
||
|
|
||
|
/**
|
||
|
* 购方名称
|
||
|
*/
|
||
|
private String gfmc;
|
||
|
|
||
|
/**
|
||
|
* 异常状态
|
||
|
*/
|
||
|
private String yczt;
|
||
|
|
||
|
public ExtBbycfpbbRespVO() {}
|
||
|
|
||
|
}
|