| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package com.goafanti.user.bo;
- public class outUserFollowList {
- private String nickname;
- private String shareType;
- private String channel;
- private String id;
- private String startTimes;
- private String contact_type;
- private String followName;
- private String followDep;
- private String result;
- private String followCount;
- private String guidance;
- private String guidanceTimes;
- public String getNickname() {
- return nickname;
- }
- public void setNickname(String nickname) {
- this.nickname = nickname;
- }
- public String getShareType() {
- return shareType;
- }
- public void setShareType(String shareType) {
- this.shareType = shareType;
- }
- public String getChannel() {
- return channel;
- }
- public void setChannel(String channel) {
- this.channel = channel;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getStartTimes() {
- return startTimes;
- }
- public void setStartTimes(String startTimes) {
- this.startTimes = startTimes;
- }
- public String getContact_type() {
- return contact_type;
- }
- public void setContact_type(String contact_type) {
- this.contact_type = contact_type;
- }
- public String getFollowName() {
- return followName;
- }
- public void setFollowName(String followName) {
- this.followName = followName;
- }
- public String getFollowDep() {
- return followDep;
- }
- public void setFollowDep(String followDep) {
- this.followDep = followDep;
- }
- public String getResult() {
- return result;
- }
- public void setResult(String result) {
- this.result = result;
- }
- public String getFollowCount() {
- return followCount;
- }
- public void setFollowCount(String followCount) {
- this.followCount = followCount;
- }
- public String getGuidance() {
- return guidance;
- }
- public void setGuidance(String guidance) {
- this.guidance = guidance;
- }
- public String getGuidanceTimes() {
- return guidanceTimes;
- }
- public void setGuidanceTimes(String guidanceTimes) {
- this.guidanceTimes = guidanceTimes;
- }
- }
|