1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package com.hz.employmentsite.vo.dataMap;
- import com.hz.employmentsite.vo.baseSettings.LabelVo;
- import com.hz.employmentsite.vo.companyService.PostVo;
- import lombok.Data;
- import java.util.Date;
- import java.util.List;
- @Data
- public class CompanyPostMapVo {
- private String postID;
- private String professionName;
- private Double minSalary;
- private Double maxSalary;
- private Integer recruitCount;
- private String contactName;
- private String contactMobile;
- private String cultureLevelName;
- private Date startTime;
- private Date EndTime;
- private String welfare;
- private String postDesc;
- private String companyID;
- private String companyName;
- private String CompanyAddress;
- private String companyModelType;
- private String recordStatusName;
- private String Longitude;
- private String Latitude;
- private String userName;
- private String userMobile;
- private Double distance;
- private List<LabelVo> companyLabelList;
- private String postLabelList;
- private List<PostVo> postList;
- private int postCount;
- private Integer creditRecordCount;
- private String companyCreateUserName;
- private String postCreateUserName;
- private String industryName;
- private String siteName;
- private Integer signinCount;
- }
|