| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.goafanti.admin.bo;
- public class AdminCustomerDetailBo {
- private String id;
- private String name;
- private String contacts;
- private String contactMobile;
- private String createTime;
- private String followTime;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
-
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public String getFollowTime() {
- return followTime;
- }
- public void setFollowTime(String followTime) {
- this.followTime = followTime;
- }
- public String getContacts() {
- return contacts;
- }
- public void setContacts(String contacts) {
- this.contacts = contacts;
- }
- public String getContactMobile() {
- return contactMobile;
- }
- public void setContactMobile(String contactMobile) {
- this.contactMobile = contactMobile;
- }
-
- }
|