WzHouseCustomerEntity.java 786 B

123456789101112131415161718192021222324252627
  1. package com.example.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. /**
  8. * 房屋管理
  9. */
  10. @Data
  11. public class WzHouseCustomerEntity implements Serializable {
  12. private static final long serialVersionUID = 1L;
  13. @TableId(type = IdType.AUTO)
  14. private Integer id;
  15. private String city;
  16. private String county;
  17. private Integer person=0; //个人
  18. private Integer personPrivate=0; //民营
  19. private Integer stateOwnedEnterprises=0; //国企
  20. private Integer government=0; //政府
  21. private Integer allNum=0; //总计
  22. List<WzHouseCustomerEntity> children;
  23. }