|
|
@ -3,18 +3,18 @@ package com.elink.esua.epdc.user.entity; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.elink.esua.epdc.commons.mybatis.entity.DeptScope; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领用户信息表 |
|
|
|
* |
|
|
|
* @author yan Lu |
|
|
|
* @description 描述 |
|
|
|
* @create 2023/8/8 10:07 |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
@EqualsAndHashCode(callSuper = false) |
|
|
|
@TableName("epdc_user_djyl") |
|
|
|
public class UserDjylEntity extends DeptScope { |
|
|
|
|
|
|
@ -281,4 +281,366 @@ public class UserDjylEntity extends DeptScope { |
|
|
|
* 包联单位 |
|
|
|
*/ |
|
|
|
private String couplingCommunity; |
|
|
|
|
|
|
|
public void setNickname(String nickname) { |
|
|
|
if (StringUtils.isNotEmpty(nickname)) { |
|
|
|
this.nickname = mobile; |
|
|
|
} else { |
|
|
|
this.nickname = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setMobile(String mobile) { |
|
|
|
if (StringUtils.isNotEmpty(mobile)) { |
|
|
|
this.mobile = mobile; |
|
|
|
} else { |
|
|
|
this.mobile = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setPassword(String password) { |
|
|
|
if (StringUtils.isNotEmpty(password)) { |
|
|
|
this.password = password; |
|
|
|
} else { |
|
|
|
this.password = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setFaceImg(String faceImg) { |
|
|
|
if (StringUtils.isNotEmpty(faceImg)) { |
|
|
|
this.faceImg = faceImg; |
|
|
|
} else { |
|
|
|
this.faceImg = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setSex(String sex) { |
|
|
|
if (StringUtils.isNotEmpty(sex)) { |
|
|
|
this.sex = sex; |
|
|
|
} else { |
|
|
|
this.sex = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setEmail(String email) { |
|
|
|
if (StringUtils.isNotEmpty(email)) { |
|
|
|
this.email = email; |
|
|
|
} else { |
|
|
|
this.email = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setTelephone(String telephone) { |
|
|
|
if (StringUtils.isNotEmpty(telephone)) { |
|
|
|
this.telephone = telephone; |
|
|
|
} else { |
|
|
|
this.telephone = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setZipCode(String zipCode) { |
|
|
|
if (StringUtils.isNotEmpty(zipCode)) { |
|
|
|
this.zipCode = zipCode; |
|
|
|
} else { |
|
|
|
this.zipCode = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setProfession(String profession) { |
|
|
|
if (StringUtils.isNotEmpty(profession)) { |
|
|
|
this.profession = profession; |
|
|
|
} else { |
|
|
|
this.profession = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setHobbies(String hobbies) { |
|
|
|
if (StringUtils.isNotEmpty(hobbies)) { |
|
|
|
this.hobbies = hobbies; |
|
|
|
} else { |
|
|
|
this.hobbies = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setUserSign(String userSign) { |
|
|
|
if (StringUtils.isNotEmpty(userSign)) { |
|
|
|
this.userSign = userSign; |
|
|
|
} else { |
|
|
|
this.userSign = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setInvitationCode(String invitationCode) { |
|
|
|
if (StringUtils.isNotEmpty(invitationCode)) { |
|
|
|
this.invitationCode = invitationCode; |
|
|
|
} else { |
|
|
|
this.invitationCode = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setLastLoginIp(String lastLoginIp) { |
|
|
|
if (StringUtils.isNotEmpty(lastLoginIp)) { |
|
|
|
this.lastLoginIp = lastLoginIp; |
|
|
|
} else { |
|
|
|
this.lastLoginIp = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setLastLongitude(String lastLongitude) { |
|
|
|
if (StringUtils.isNotEmpty(lastLongitude)) { |
|
|
|
this.lastLongitude = lastLongitude; |
|
|
|
} else { |
|
|
|
this.lastLongitude = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setLastLatitude(String lastLatitude) { |
|
|
|
if (StringUtils.isNotEmpty(lastLatitude)) { |
|
|
|
this.lastLatitude = lastLatitude; |
|
|
|
} else { |
|
|
|
this.lastLatitude = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setRealName(String realName) { |
|
|
|
if (StringUtils.isNotEmpty(realName)) { |
|
|
|
this.realName = realName; |
|
|
|
} else { |
|
|
|
this.realName = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setIdentityNo(String identityNo) { |
|
|
|
if (StringUtils.isNotEmpty(identityNo)) { |
|
|
|
this.identityNo = identityNo; |
|
|
|
} else { |
|
|
|
this.identityNo = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setRoad(String road) { |
|
|
|
if (StringUtils.isNotEmpty(road)) { |
|
|
|
this.road = road; |
|
|
|
} else { |
|
|
|
this.road = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setVillageName(String villageName) { |
|
|
|
if (StringUtils.isNotEmpty(villageName)) { |
|
|
|
this.villageName = villageName; |
|
|
|
} else { |
|
|
|
this.villageName = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setDwellingPlace(String dwellingPlace) { |
|
|
|
if (StringUtils.isNotEmpty(dwellingPlace)) { |
|
|
|
this.dwellingPlace = dwellingPlace; |
|
|
|
} else { |
|
|
|
this.dwellingPlace = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setAddress(String address) { |
|
|
|
if (StringUtils.isNotEmpty(address)) { |
|
|
|
this.address = address; |
|
|
|
} else { |
|
|
|
this.address = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setWxOpenId(String wxOpenId) { |
|
|
|
if (StringUtils.isNotEmpty(wxOpenId)) { |
|
|
|
this.wxOpenId = wxOpenId; |
|
|
|
} else { |
|
|
|
this.wxOpenId = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setWxUnionId(String wxUnionId) { |
|
|
|
if (StringUtils.isNotEmpty(wxUnionId)) { |
|
|
|
this.wxUnionId = wxUnionId; |
|
|
|
} else { |
|
|
|
this.wxUnionId = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setPartyFlag(String partyFlag) { |
|
|
|
if (StringUtils.isNotEmpty(partyFlag)) { |
|
|
|
this.partyFlag = partyFlag; |
|
|
|
} else { |
|
|
|
this.partyFlag = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setRegisterWay(String registerWay) { |
|
|
|
if (StringUtils.isNotEmpty(registerWay)) { |
|
|
|
this.registerWay = registerWay; |
|
|
|
} else { |
|
|
|
this.registerWay = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setRegisterSource(String registerSource) { |
|
|
|
if (StringUtils.isNotEmpty(registerSource)) { |
|
|
|
this.registerSource = registerSource; |
|
|
|
} else { |
|
|
|
this.registerSource = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setMobileProvince(String mobileProvince) { |
|
|
|
if (StringUtils.isNotEmpty(mobileProvince)) { |
|
|
|
this.mobileProvince = mobileProvince; |
|
|
|
} else { |
|
|
|
this.mobileProvince = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setMobileCity(String mobileCity) { |
|
|
|
if (StringUtils.isNotEmpty(mobileCity)) { |
|
|
|
this.mobileCity = mobileCity; |
|
|
|
} else { |
|
|
|
this.mobileCity = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setMobileCarrier(String mobileCarrier) { |
|
|
|
if (StringUtils.isNotEmpty(mobileCarrier)) { |
|
|
|
this.mobileCarrier = mobileCarrier; |
|
|
|
} else { |
|
|
|
this.mobileCarrier = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setInviteUserId(String inviteUserId) { |
|
|
|
if (StringUtils.isNotEmpty(inviteUserId)) { |
|
|
|
this.inviteUserId = inviteUserId; |
|
|
|
} else { |
|
|
|
this.inviteUserId = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setState(String state) { |
|
|
|
if (StringUtils.isNotEmpty(state)) { |
|
|
|
this.state = state; |
|
|
|
} else { |
|
|
|
this.state = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setLastName(String lastName) { |
|
|
|
if (StringUtils.isNotEmpty(lastName)) { |
|
|
|
this.lastName = lastName; |
|
|
|
} else { |
|
|
|
this.lastName = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setFirstName(String firstName) { |
|
|
|
if (StringUtils.isNotEmpty(firstName)) { |
|
|
|
this.firstName = firstName; |
|
|
|
} else { |
|
|
|
this.firstName = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setRemark(String remark) { |
|
|
|
if (StringUtils.isNotEmpty(remark)) { |
|
|
|
this.remark = remark; |
|
|
|
} else { |
|
|
|
this.remark = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setParentDeptIds(String parentDeptIds) { |
|
|
|
if (StringUtils.isNotEmpty(parentDeptIds)) { |
|
|
|
this.parentDeptIds = parentDeptIds; |
|
|
|
} else { |
|
|
|
this.parentDeptIds = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setParentDeptNames(String parentDeptNames) { |
|
|
|
if (StringUtils.isNotEmpty(parentDeptNames)) { |
|
|
|
this.parentDeptNames = parentDeptNames; |
|
|
|
} else { |
|
|
|
this.parentDeptNames = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setAllDeptIds(String allDeptIds) { |
|
|
|
if (StringUtils.isNotEmpty(allDeptIds)) { |
|
|
|
this.allDeptIds = allDeptIds; |
|
|
|
} else { |
|
|
|
this.allDeptIds = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setAllDeptNames(String allDeptNames) { |
|
|
|
if (StringUtils.isNotEmpty(allDeptNames)) { |
|
|
|
this.allDeptNames = allDeptNames; |
|
|
|
} else { |
|
|
|
this.allDeptNames = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setRentFlag(String rentFlag) { |
|
|
|
if (StringUtils.isNotEmpty(rentFlag)) { |
|
|
|
this.rentFlag = rentFlag; |
|
|
|
} else { |
|
|
|
this.rentFlag = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setDriverFlag(String driverFlag) { |
|
|
|
if (StringUtils.isNotEmpty(driverFlag)) { |
|
|
|
this.driverFlag = driverFlag; |
|
|
|
} else { |
|
|
|
this.driverFlag = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setWorkUnit(String workUnit) { |
|
|
|
if (StringUtils.isNotEmpty(workUnit)) { |
|
|
|
this.workUnit = workUnit; |
|
|
|
} else { |
|
|
|
this.workUnit = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setWorkType(String workType) { |
|
|
|
if (StringUtils.isNotEmpty(workType)) { |
|
|
|
this.workType = workType; |
|
|
|
} else { |
|
|
|
this.workType = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setWorkIndustry(String workIndustry) { |
|
|
|
if (StringUtils.isNotEmpty(workIndustry)) { |
|
|
|
this.workIndustry = workIndustry; |
|
|
|
} else { |
|
|
|
this.workIndustry = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setWorkIndustryText(String workIndustryText) { |
|
|
|
if (StringUtils.isNotEmpty(workIndustryText)) { |
|
|
|
this.workIndustryText = workIndustryText; |
|
|
|
} else { |
|
|
|
this.workIndustryText = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setCouplingCommunity(String couplingCommunity) { |
|
|
|
if (StringUtils.isNotEmpty(couplingCommunity)) { |
|
|
|
this.couplingCommunity = couplingCommunity; |
|
|
|
} else { |
|
|
|
this.couplingCommunity = null; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|