|
|
@@ -0,0 +1,131 @@
|
|
|
+package com.goafanti.customer.bo;
|
|
|
+
|
|
|
+public class InputUpdateAndReceiveCustomer {
|
|
|
+
|
|
|
+ private String id;
|
|
|
+ private String name;
|
|
|
+ private String orgCode;
|
|
|
+ private String contacts;
|
|
|
+ private String contactMobile;
|
|
|
+ private String societyTag;
|
|
|
+ private Integer province;
|
|
|
+ private Integer city;
|
|
|
+ private Integer area;
|
|
|
+ private String type;
|
|
|
+ private String intendedProject;
|
|
|
+ private String businessScope;
|
|
|
+ private String position;
|
|
|
+ private Integer level;
|
|
|
+
|
|
|
+ public Integer getLevel() {
|
|
|
+ return level;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLevel(Integer level) {
|
|
|
+ this.level = level;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 getOrgCode() {
|
|
|
+ return orgCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrgCode(String orgCode) {
|
|
|
+ this.orgCode = orgCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSocietyTag() {
|
|
|
+ return societyTag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSocietyTag(String societyTag) {
|
|
|
+ this.societyTag = societyTag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIntendedProject() {
|
|
|
+ return intendedProject;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIntendedProject(String intendedProject) {
|
|
|
+ this.intendedProject = intendedProject;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBusinessScope() {
|
|
|
+ return businessScope;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBusinessScope(String businessScope) {
|
|
|
+ this.businessScope = businessScope;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPosition() {
|
|
|
+ return position;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPosition(String position) {
|
|
|
+ this.position = position;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getProvince() {
|
|
|
+ return province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvince(Integer province) {
|
|
|
+ this.province = province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCity() {
|
|
|
+ return city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCity(Integer city) {
|
|
|
+ this.city = city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getArea() {
|
|
|
+ return area;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArea(Integer area) {
|
|
|
+ this.area = area;
|
|
|
+ }
|
|
|
+}
|