package com.fzzy.push.nx2024.dto;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description 宁夏省平台2024版-固定资产卡片信息
|
* @Author CZT
|
* @Date 2024/10/28 15:38
|
*/
|
@Data
|
public class Nx2024Api2448 implements Serializable {
|
|
|
|
|
@PropertyDef(label = "操作标志" )
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间" )
|
private Date zhgxsj;
|
}
|