Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
f17caac1
Commit
f17caac1
authored
Sep 09, 2024
by
yanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 客户跟进bug修复
parent
ea80b86b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
20240830.sql
sql/v2.1/20240830.sql
+1
-0
CustomerFollowupDO.java
...r/dal/dataobject/customerFollowup/CustomerFollowupDO.java
+7
-0
CustomerFollowupBackVO.java
.../customer/vo/customerFollowup/CustomerFollowupBackVO.java
+4
-0
No files found.
sql/v2.1/20240830.sql
View file @
f17caac1
...
@@ -92,6 +92,7 @@ DROP TABLE IF EXISTS `ecw_customer_followup`;
...
@@ -92,6 +92,7 @@ DROP TABLE IF EXISTS `ecw_customer_followup`;
CREATE
TABLE
`ecw_customer_followup`
(
CREATE
TABLE
`ecw_customer_followup`
(
`id`
bigint
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键'
,
`id`
bigint
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键'
,
`number`
varchar
(
64
)
NULL
DEFAULT
NULL
COMMENT
'编号'
,
`number`
varchar
(
64
)
NULL
DEFAULT
NULL
COMMENT
'编号'
,
`parent_id`
bigint
NULL
DEFAULT
NULL
COMMENT
'上一级跟进单ID'
,
`parent_number`
varchar
(
64
)
NULL
DEFAULT
NULL
COMMENT
'上一级跟进单号'
,
`parent_number`
varchar
(
64
)
NULL
DEFAULT
NULL
COMMENT
'上一级跟进单号'
,
`status`
int
NULL
DEFAULT
NULL
COMMENT
'状态 字典customer_followup_status'
,
`status`
int
NULL
DEFAULT
NULL
COMMENT
'状态 字典customer_followup_status'
,
`customer_id`
bigint
NULL
DEFAULT
NULL
COMMENT
'客户编号'
,
`customer_id`
bigint
NULL
DEFAULT
NULL
COMMENT
'客户编号'
,
...
...
yudao-module-customer/yudao-module-customer-core/src/main/java/cn/iocoder/yudao/module/customer/dal/dataobject/customerFollowup/CustomerFollowupDO.java
View file @
f17caac1
package
cn
.
iocoder
.
yudao
.
module
.
customer
.
dal
.
dataobject
.
customerFollowup
;
package
cn
.
iocoder
.
yudao
.
module
.
customer
.
dal
.
dataobject
.
customerFollowup
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
lombok.*
;
import
lombok.*
;
import
java.util.*
;
import
java.util.*
;
import
com.baomidou.mybatisplus.annotation.*
;
import
com.baomidou.mybatisplus.annotation.*
;
...
@@ -28,6 +29,10 @@ public class CustomerFollowupDO extends BaseDO {
...
@@ -28,6 +29,10 @@ public class CustomerFollowupDO extends BaseDO {
* 编号
* 编号
*/
*/
private
String
number
;
private
String
number
;
/**
* 上一级跟进id
*/
private
Long
parentId
;
/**
/**
* 上一级跟进单号
* 上一级跟进单号
*/
*/
...
@@ -102,4 +107,6 @@ public class CustomerFollowupDO extends BaseDO {
...
@@ -102,4 +107,6 @@ public class CustomerFollowupDO extends BaseDO {
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
String
updaterName
;
private
String
updaterName
;
@TableField
(
exist
=
false
)
private
String
followUserName
;
}
}
yudao-module-customer/yudao-module-customer-core/src/main/java/cn/iocoder/yudao/module/customer/vo/customerFollowup/CustomerFollowupBackVO.java
View file @
f17caac1
...
@@ -95,6 +95,10 @@ public class CustomerFollowupBackVO {
...
@@ -95,6 +95,10 @@ public class CustomerFollowupBackVO {
private
String
parentNumber
;
private
String
parentNumber
;
@ApiModelProperty
(
value
=
"上一级跟进单ID"
)
private
String
parentId
;
@ExcelProperty
(
value
=
"提交状态"
,
converter
=
DictConvert
.
class
)
@ExcelProperty
(
value
=
"提交状态"
,
converter
=
DictConvert
.
class
)
@DictFormat
(
"customer_followup_status"
)
@DictFormat
(
"customer_followup_status"
)
@ApiModelProperty
(
value
=
"状态 字典customer_followup_status"
)
@ApiModelProperty
(
value
=
"状态 字典customer_followup_status"
)
...
...
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