package com.fzzy.push.gd2022.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 接口表-财务报表信息
|
*
|
* @author czt
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper=false)
|
public class Gd2022Api1114 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@PropertyDef(label = "单位代码" )
|
private String dwdm;
|
|
@JSONField(format = "yyyyMMdd")
|
@PropertyDef(label = "报表期号")
|
private Date bbsj;
|
|
//01-资产负债;02-现金流量表;03-利润表
|
@PropertyDef(label = "报表名")
|
private String bbm;
|
|
@PropertyDef(label = "指标序号" )
|
private int zbxh;
|
|
@PropertyDef(label = "指标名称" )
|
private String zbmc;
|
|
@PropertyDef(label = "指标值1" )
|
private String zbz1;
|
|
@PropertyDef(label = "指标值2" )
|
private String zbz2;
|
|
@PropertyDef(label = "操作标志" )
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间" )
|
private Date zhgxsj;
|
}
|