Browse Source

新增统一信用代码添加

anderx 3 years ago
parent
commit
6c1fda114b

+ 1 - 1
src/main/java/com/goafanti/common/mapper/UserMapper.xml

@@ -1418,7 +1418,7 @@
 
   <select id="selectPrivateOrganizationCustomerList" resultType="com.goafanti.customer.bo.CustomerListOut">
     select a.id uid,a.aid,a.nickname name,a.society_tag societyTag,a.`level`,b.name aName,dg1.name as province,dg2.name as city,
-    a.guidance, dg3.name as area,d.intended_project  intendedProject,d.business_scope businessScope,
+    a.guidance, dg3.name as area,d.intended_project  intendedProject,d.business_scope businessScope,d.org_code orgCode,
     date_format(um.last_sign_time,'%Y-%m-%d %H:%i:%S') lastSignTime,
     date_format(a.transfer_time,'%Y-%m-%d %H:%i:%S') as transferTime,
     date_format(a.create_time,'%Y-%m-%d %H:%i:%S') as createTime,

+ 13 - 0
src/main/java/com/goafanti/customer/bo/CustomerListIn.java

@@ -74,6 +74,19 @@ public class CustomerListIn {
 
 	private String intendedProject;
 
+	/**
+	 * 企业信用代码
+	 */
+	private String orgCode;
+
+	public String getOrgCode() {
+		return orgCode;
+	}
+
+	public void setOrgCode(String orgCode) {
+		this.orgCode = orgCode;
+	}
+
 	public String getIntendedProject() {
 		return intendedProject;
 	}