package com.fzzy.push.sh2023.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 接口表-企业信用信息
|
*/
|
@Data
|
public class SH2023Api1113 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 4416097604510905407L;
|
|
@PropertyDef(label = "单位代码")
|
private String dwdm;
|
|
@PropertyDef(label = "信用等级")
|
private String xydj;
|
|
@PropertyDef(label = "评定年份")
|
private String pdnf;
|
|
@PropertyDef(label = "评定单位/机构名称")
|
private String pddw;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@PropertyDef(label = "最后更新时间")
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
private Date zhgxsj;
|
|
@PropertyDef(label = "标记位")
|
private String bjw;
|
|
|
}
|