BuildingData.java 644 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.zoniot.ccrc.commom.model;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import lombok.Data;
  4. import java.util.Date;
  5. @Data
  6. public class BuildingData {
  7. private Integer id;
  8. private Integer communityId;
  9. private Integer customerId;
  10. private String name;
  11. private String address;
  12. private Integer province;
  13. private Integer city;
  14. private Integer region;
  15. private Double longitude;
  16. private Double latitude;
  17. private Integer status;
  18. @JSONField(format="yyyy-MM-dd HH:mm:ss")
  19. private Date createDate;
  20. @JSONField(format="yyyy-MM-dd HH:mm:ss")
  21. private Date updateDate;
  22. }