CompanyPostMapVo.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.hz.employmentsite.vo.dataMap;
  2. import com.hz.employmentsite.vo.baseSettings.LabelVo;
  3. import com.hz.employmentsite.vo.companyService.PostVo;
  4. import lombok.Data;
  5. import java.util.Date;
  6. import java.util.List;
  7. @Data
  8. public class CompanyPostMapVo {
  9. private String postID;
  10. private String professionName;
  11. private Double minSalary;
  12. private Double maxSalary;
  13. private Integer recruitCount;
  14. private String contactName;
  15. private String contactMobile;
  16. private String cultureLevelName;
  17. private Date startTime;
  18. private Date EndTime;
  19. private String welfare;
  20. private String postDesc;
  21. private String companyID;
  22. private String companyName;
  23. private String CompanyAddress;
  24. private String companyModelType;
  25. private String recordStatusName;
  26. private String Longitude;
  27. private String Latitude;
  28. private String userName;
  29. private String userMobile;
  30. private Double distance;
  31. private List<LabelVo> companyLabelList;
  32. private String postLabelList;
  33. private List<PostVo> postList;
  34. private int postCount;
  35. private Integer creditRecordCount;
  36. private String companyCreateUserName;
  37. private String postCreateUserName;
  38. private String industryName;
  39. private String siteName;
  40. private Integer signinCount;
  41. }