Browse Source

代码修正

anderx 6 years ago
parent
commit
8deba67bd4

+ 40 - 0
src/main/java/com/goafanti/admin/bo/AdminCustomerBo.java

@@ -0,0 +1,40 @@
+package com.goafanti.admin.bo;
+
+public class AdminCustomerBo {
+	private String aid;
+	private String aName;
+	private String depName;
+	private String userCount;
+	private String timeCount;
+	public String getAid() {
+		return aid;
+	}
+	public void setAid(String aid) {
+		this.aid = aid;
+	}
+	public String getaName() {
+		return aName;
+	}
+	public void setaName(String aName) {
+		this.aName = aName;
+	}
+	public String getDepName() {
+		return depName;
+	}
+	public void setDepName(String depName) {
+		this.depName = depName;
+	}
+	public String getUserCount() {
+		return userCount;
+	}
+	public void setUserCount(String userCount) {
+		this.userCount = userCount;
+	}
+	public String getTimeCount() {
+		return timeCount;
+	}
+	public void setTimeCount(String timeCount) {
+		this.timeCount = timeCount;
+	}
+	
+}

+ 48 - 0
src/main/java/com/goafanti/admin/bo/AdminCustomerDetailBo.java

@@ -0,0 +1,48 @@
+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;
+	}
+	
+}