123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- package com.hz.employmentsite.model;
- import java.util.Date;
- public class PcCompany {
- private String companyID;
- private String siteID;
- private String regionCode;
- private Integer insuredCount;
- private String streetCode;
- private String companyName;
- private String companyCode;
- private Integer companyModel;
- private String workSituation;
- private Integer companyType;
- private String companyAddress;
- private String userName;
- private String userMobile;
- private String companyEmail;
- private String frName;
- private Date validDate;
- private Integer isShortage;
- private Integer recordStatus;
- private String createUserID;
- private Date createTime;
- private String modifyUserID;
- private Date modifyTime;
- private String longitude;
- private String latitude;
- private String openId;
- public String getCompanyID() {
- return companyID;
- }
- public void setCompanyID(String companyID) {
- this.companyID = companyID == null ? null : companyID.trim();
- }
- public String getSiteID() {
- return siteID;
- }
- public void setSiteID(String siteID) {
- this.siteID = siteID == null ? null : siteID.trim();
- }
- public String getRegionCode() {
- return regionCode;
- }
- public void setRegionCode(String regionCode) {
- this.regionCode = regionCode == null ? null : regionCode.trim();
- }
- public Integer getInsuredCount() {
- return insuredCount;
- }
- public void setInsuredCount(Integer insuredCount) {
- this.insuredCount = insuredCount;
- }
- public String getStreetCode() {
- return streetCode;
- }
- public void setStreetCode(String streetCode) {
- this.streetCode = streetCode == null ? null : streetCode.trim();
- }
- public String getCompanyName() {
- return companyName;
- }
- public void setCompanyName(String companyName) {
- this.companyName = companyName == null ? null : companyName.trim();
- }
- public String getCompanyCode() {
- return companyCode;
- }
- public void setCompanyCode(String companyCode) {
- this.companyCode = companyCode == null ? null : companyCode.trim();
- }
- public Integer getCompanyModel() {
- return companyModel;
- }
- public void setCompanyModel(Integer companyModel) {
- this.companyModel = companyModel;
- }
- public String getWorkSituation() {
- return workSituation;
- }
- public void setWorkSituation(String workSituation) {
- this.workSituation = workSituation == null ? null : workSituation.trim();
- }
- public Integer getCompanyType() {
- return companyType;
- }
- public void setCompanyType(Integer companyType) {
- this.companyType = companyType;
- }
- public String getCompanyAddress() {
- return companyAddress;
- }
- public void setCompanyAddress(String companyAddress) {
- this.companyAddress = companyAddress == null ? null : companyAddress.trim();
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName == null ? null : userName.trim();
- }
- public String getUserMobile() {
- return userMobile;
- }
- public void setUserMobile(String userMobile) {
- this.userMobile = userMobile == null ? null : userMobile.trim();
- }
- public String getCompanyEmail() {
- return companyEmail;
- }
- public void setCompanyEmail(String companyEmail) {
- this.companyEmail = companyEmail == null ? null : companyEmail.trim();
- }
- public String getFrName() {
- return frName;
- }
- public void setFrName(String frName) {
- this.frName = frName == null ? null : frName.trim();
- }
- public Date getValidDate() {
- return validDate;
- }
- public void setValidDate(Date validDate) {
- this.validDate = validDate;
- }
- public Integer getIsShortage() {
- return isShortage;
- }
- public void setIsShortage(Integer isShortage) {
- this.isShortage = isShortage;
- }
- public Integer getRecordStatus() {
- return recordStatus;
- }
- public void setRecordStatus(Integer recordStatus) {
- this.recordStatus = recordStatus;
- }
- public String getCreateUserID() {
- return createUserID;
- }
- public void setCreateUserID(String createUserID) {
- this.createUserID = createUserID == null ? null : createUserID.trim();
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getModifyUserID() {
- return modifyUserID;
- }
- public void setModifyUserID(String modifyUserID) {
- this.modifyUserID = modifyUserID == null ? null : modifyUserID.trim();
- }
- public Date getModifyTime() {
- return modifyTime;
- }
- public void setModifyTime(Date modifyTime) {
- this.modifyTime = modifyTime;
- }
- public String getLongitude() {
- return longitude;
- }
- public void setLongitude(String longitude) {
- this.longitude = longitude == null ? null : longitude.trim();
- }
- public String getLatitude() {
- return latitude;
- }
- public void setLatitude(String latitude) {
- this.latitude = latitude == null ? null : latitude.trim();
- }
- public String getOpenId() {
- return openId;
- }
- public void setOpenId(String openId) {
- this.openId = openId == null ? null : openId.trim();
- }
- }
|