CommunityData.java 696 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 CommunityData {
  7. private Integer id;
  8. private String name;
  9. private String code;
  10. private Integer customerId;
  11. private Integer province;
  12. private Integer city;
  13. private Integer region;
  14. private Double longitude;
  15. private Double latitude;
  16. private Integer districtId;
  17. private String address;
  18. private String remark;
  19. private Integer status;
  20. @JSONField(format="yyyy-MM-dd HH:mm:ss")
  21. private Date dateCreate;
  22. @JSONField(format="yyyy-MM-dd HH:mm:ss")
  23. private Date dateUpdate;
  24. }