package com.siwei.apply.domain; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * 土地核验与规划核实 */ @Data public class Tdhyhs extends BaseId { private String projectId; // 项目ID private String ydwz; // 用地位置 private String hgzh; // 合格证号 private String fzjg; // 发证机关 private String fzDate; // 发证日期 // 新增字段 private String jsdw; // 建设单位 private String gljsgcghxkh; // 关联建设工程规划许可号 // 新增字段 private String hyyj; // 审核意见 private String bz; // 备注(数据清单) private Boolean hasOnchain; // 是否上链 private String creatorId; // 创建人ID @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date createdAt; // 创建时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date updatedAt; // 更新时间 private String sourceId; // 同步表id }