Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
dsk-cr20g
Commits
3738fd17
Commit
3738fd17
authored
May 25, 2023
by
lcl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户省市区字段添加
parent
d6641a99
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
CustomerController.java
...a/com/dsk/web/controller/customer/CustomerController.java
+3
-0
Customer.java
...rc/main/java/com/dsk/system/domain/customer/Customer.java
+12
-0
CustomerMapper.xml
.../main/resources/mapper/system/customer/CustomerMapper.xml
+4
-4
No files found.
dsk-admin/src/main/java/com/dsk/web/controller/customer/CustomerController.java
View file @
3738fd17
...
@@ -120,6 +120,9 @@ public class CustomerController extends BaseController {
...
@@ -120,6 +120,9 @@ public class CustomerController extends BaseController {
customer
.
setCompanyId
(
MapUtil
.
getInt
(
obj
,
"jskEid"
));
customer
.
setCompanyId
(
MapUtil
.
getInt
(
obj
,
"jskEid"
));
customer
.
setLegalPerson
(
MapUtil
.
getStr
(
obj
,
"legalPerson"
));
customer
.
setLegalPerson
(
MapUtil
.
getStr
(
obj
,
"legalPerson"
));
customer
.
setRegisterCapital
(
MapUtil
.
getStr
(
obj
,
"registeredCapital"
));
customer
.
setRegisterCapital
(
MapUtil
.
getStr
(
obj
,
"registeredCapital"
));
customer
.
setProvinceId
(
MapUtil
.
getInt
(
obj
,
"provinceId"
));
customer
.
setCityId
(
MapUtil
.
getInt
(
obj
,
"cityId"
));
customer
.
setDistrictId
(
MapUtil
.
getInt
(
obj
,
"districtId"
));
customer
.
setRegisterAddress
(
MapUtil
.
getStr
(
obj
,
"domicile"
));
customer
.
setRegisterAddress
(
MapUtil
.
getStr
(
obj
,
"domicile"
));
customer
.
setCreditCode
(
MapUtil
.
getStr
(
obj
,
"creditCode"
));
customer
.
setCreditCode
(
MapUtil
.
getStr
(
obj
,
"creditCode"
));
}
}
...
...
dsk-system/src/main/java/com/dsk/system/domain/customer/Customer.java
View file @
3738fd17
...
@@ -42,6 +42,18 @@ public class Customer implements Serializable {
...
@@ -42,6 +42,18 @@ public class Customer implements Serializable {
* 注册资本
* 注册资本
*/
*/
private
String
registerCapital
;
private
String
registerCapital
;
/**
* 省id
*/
private
Integer
provinceId
;
/**
* 市id
*/
private
Integer
cityId
;
/**
* 区县id
*/
private
Integer
districtId
;
/**
/**
* 注册地址
* 注册地址
*/
*/
...
...
dsk-system/src/main/resources/mapper/system/customer/CustomerMapper.xml
View file @
3738fd17
...
@@ -4,10 +4,10 @@
...
@@ -4,10 +4,10 @@
<sql
id=
"Base_Bean"
>
<sql
id=
"Base_Bean"
>
ct.customer_id, ct.company_id, ct.company_name, ct.legal_person, ct.credit_code, ct.register_capital,
ct.customer_id, ct.company_id, ct.company_name, ct.legal_person, ct.credit_code, ct.register_capital,
ct.
register_address, ct.company_nature, ct.company_level, ct.credit_level, ct.super_company
,
ct.
province_id, ct.city_id, ct.district_id, ct.register_address, ct.company_nature, ct.company_level
,
ct.
is_on, ct.is_major, ct.company_attribute, ct.main_business, ct.business_scope, ct.customer_level
,
ct.
credit_level, ct.super_company, ct.is_on, ct.is_major, ct.company_attribute, ct.main_business
,
ct.business_
characteristic, ct.decision_chain, ct.bid_characteristic, ct.performance
_characteristic,
ct.business_
scope, ct.customer_level, ct.business_characteristic, ct.decision_chain, ct.bid
_characteristic,
ct.other_ms_characteistic, ct.create_id, ct.create_time, ct.update_id, ct.update_time
ct.
performance_characteristic, ct.
other_ms_characteistic, ct.create_id, ct.create_time, ct.update_id, ct.update_time
</sql>
</sql>
<select
id=
"selectList"
resultType=
"com.dsk.system.domain.customer.vo.CustomerListVo"
>
<select
id=
"selectList"
resultType=
"com.dsk.system.domain.customer.vo.CustomerListVo"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment