Commit d6641a99 authored by lcl's avatar lcl

。。。

parent 5082ca28
...@@ -42,6 +42,10 @@ public class Customer implements Serializable { ...@@ -42,6 +42,10 @@ public class Customer implements Serializable {
* 注册资本 * 注册资本
*/ */
private String registerCapital; private String registerCapital;
/**
* 注册地址
*/
private String registerAddress;
/** /**
* 社会统一信用代码 * 社会统一信用代码
*/ */
...@@ -55,9 +59,13 @@ public class Customer implements Serializable { ...@@ -55,9 +59,13 @@ public class Customer implements Serializable {
*/ */
private String companyLevel; private String companyLevel;
/** /**
* 信用等级(credit_level_type) * 企业主体评级(credit_level_type)
*/ */
private String creditLevel; private String creditLevel;
/**
* 客户等级(customer_level_type)
*/
private String customerLevel;
/** /**
* 上级公司(控股单位) * 上级公司(控股单位)
*/ */
......
...@@ -38,6 +38,10 @@ public class CustomerListVo { ...@@ -38,6 +38,10 @@ public class CustomerListVo {
* 注册资本(字符串) * 注册资本(字符串)
*/ */
private String registerCapital; private String registerCapital;
/**
* 注册地址
*/
private String registerAddress;
/** /**
* 社会统一信用代码 * 社会统一信用代码
*/ */
...@@ -51,9 +55,13 @@ public class CustomerListVo { ...@@ -51,9 +55,13 @@ public class CustomerListVo {
*/ */
private String companyLevel; private String companyLevel;
/** /**
* 信用等 * 企业主体评
*/ */
private String creditLevel; private String creditLevel;
/**
* 客户等级
*/
private String customerLevel;
/** /**
* 上级公司 * 上级公司
*/ */
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
<mapper namespace="com.dsk.system.mapper.CustomerMapper"> <mapper namespace="com.dsk.system.mapper.CustomerMapper">
<sql id="Base_Bean"> <sql id="Base_Bean">
ct.customer_id, ct.company_id, ct.company_name, ct.legal_person, ct.credit_code, ct.customer_id, ct.company_id, ct.company_name, ct.legal_person, ct.credit_code, ct.register_capital,
ct.register_capital, ct.company_nature, ct.company_level, ct.credit_level, ct.super_company, ct.register_address, ct.company_nature, ct.company_level, ct.credit_level, ct.super_company,
ct.is_on, ct.is_major, ct.company_attribute, ct.main_business, ct.business_scope, ct.is_on, ct.is_major, ct.company_attribute, ct.main_business, ct.business_scope, ct.customer_level,
ct.business_characteristic, ct.decision_chain, ct.bid_characteristic, ct.performance_characteristic, ct.business_characteristic, ct.decision_chain, ct.bid_characteristic, ct.performance_characteristic,
ct.other_ms_characteistic, ct.create_id, ct.create_time, ct.update_id, ct.update_time ct.other_ms_characteistic, ct.create_id, ct.create_time, ct.update_id, ct.update_time
</sql> </sql>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment