Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
孙龙
/
kaopu-server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
388e74f8
authored
Nov 26, 2019
by
Joneq
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
完成公司历史数据计算
parent
2d3fd640
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
301 additions
and
8 deletions
cmd/static/add_score.go
cmd/static/history_bussiness.go
cmd/static/main.go
internal/dao/add_scores.go → internal/dao/add_score.go
internal/dao/basic_info.go
internal/dao/dao.go
internal/model/add_scores.go → internal/model/add_score.go
internal/model/basic_info.go
internal/service/service.go
logs/info.log
cmd/static/add_score.go
View file @
388e74f8
package
main
//加分项30分)
func
AddScore
()
{
var
(
sumScore
float32
=
0
joinNum
float32
=
0
)
for
_
,
v
:=
range
companyAddScore
{
sumScore
+=
float32
(
stringTurnFloat64
(
v
[
"final_score"
]))
joinNum
+=
1
}
//经过权重计算之后的总分值
sumScore
=
sumScore
/
joinNum
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
sumScore
,
sumScore
,
sumScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
0
,
5
)
}
//业界口碑(2分))
...
...
cmd/static/history_bussiness.go
View file @
388e74f8
package
main
var
(
h_currentScore
float32
h_totalScore
[
6
]
float32
)
//历史交易情况(50分)
func
HistoryBussiness
()
{
CooperationTime
()
...
...
@@ -8,34 +13,188 @@ func HistoryBussiness() {
HistoricalOverdueTimes
()
AverageMoneyThreeMonths
()
AverageMoneySixMonths
()
var
(
sumScore
float32
=
0
joinNum
float32
=
0
)
//查找出所有不是0的分值
for
i
:=
0
;
i
<
len
(
totalScore
)
;
i
++
{
if
totalScore
[
i
]
!=
0
{
joinNum
+=
1
sumScore
+=
totalScore
[
i
]
*
0.5
}
}
//经过权重计算之后的总分值
sumScore
=
sumScore
/
joinNum
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
sumScore
,
sumScore
,
sumScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
0
,
4
)
}
//合作时间(5分)
func
CooperationTime
()
{
first_order_time
:=
stringTurnInt64
(
basicInfo
[
"first_order_time"
])
diffTime
:=
getTimeStamp
()
-
first_order_time
if
diffTime
<
(
3600
*
12
*
365
)
{
h_currentScore
=
0
}
else
if
diffTime
<
(
3600
*
24
*
365
)
&&
diffTime
>=
(
3600
*
12
*
365
)
{
h_currentScore
=
1
}
else
if
diffTime
<
(
3600
*
24
*
365
*
2
)
&&
diffTime
>=
(
3600
*
24
*
365
*
1
)
{
h_currentScore
=
2
}
else
if
diffTime
>=
(
3600
*
24
*
365
*
2
){
h_currentScore
=
5
}
else
{
h_currentScore
=
0
}
h_totalScore
[
0
]
=
h_currentScore
//设置分数
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
currentScore
,
currentScore
,
currentScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
4
,
29
)
}
//合作累计金额(10分)
func
AccumulatedAmountOfCooperation
()
{
total_order_amount
:=
stringTurnFloat64
(
basicInfo
[
"total_order_amount"
])
if
total_order_amount
<
1000000
{
h_currentScore
=
0
}
else
if
total_order_amount
<
2000000
&&
total_order_amount
>=
1000000
{
h_currentScore
=
1
}
else
if
total_order_amount
<
3000000
&&
total_order_amount
>=
2000000
{
h_currentScore
=
2
}
else
if
total_order_amount
<
5000000
&&
total_order_amount
>=
3000000
{
h_currentScore
=
3
}
else
if
total_order_amount
<
10000000
&&
total_order_amount
>=
5000000
{
h_currentScore
=
5
}
else
if
total_order_amount
>=
10000000
{
h_currentScore
=
10
}
else
{
h_currentScore
=
0
}
h_totalScore
[
1
]
=
h_currentScore
//设置分数
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
currentScore
,
currentScore
,
currentScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
4
,
30
)
}
//累计毛利(10分)
func
AccumulatedGrossProfit
()
{
total_gross_profit
:=
stringTurnFloat64
(
basicInfo
[
"total_gross_profit"
])
if
total_gross_profit
<
30000
{
h_currentScore
=
0
}
else
if
total_gross_profit
<
50000
&&
total_gross_profit
>=
30000
{
h_currentScore
=
1
}
else
if
total_gross_profit
<
50000
&&
total_gross_profit
>=
100000
{
h_currentScore
=
2
}
else
if
total_gross_profit
<
200000
&&
total_gross_profit
>=
100000
{
h_currentScore
=
3
}
else
if
total_gross_profit
<
300000
&&
total_gross_profit
>=
200000
{
h_currentScore
=
5
}
else
if
total_gross_profit
>=
300000
{
h_currentScore
=
10
}
else
{
h_currentScore
=
0
}
h_totalScore
[
2
]
=
h_currentScore
//设置分数
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
currentScore
,
currentScore
,
currentScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
4
,
31
)
}
//历史逾期次数(5分)
func
HistoricalOverdueTimes
()
{
total_delay_times
:=
stringTurnInt64
(
basicInfo
[
"total_delay_times"
])
if
total_delay_times
>
5
{
h_currentScore
=
0
}
else
if
total_delay_times
<=
5
&&
total_delay_times
>=
2
{
h_currentScore
=
3
}
else
if
total_delay_times
<
2
{
h_currentScore
=
5
}
else
{
h_currentScore
=
0
}
h_totalScore
[
3
]
=
h_currentScore
//设置分数
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
currentScore
,
currentScore
,
currentScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
4
,
32
)
}
//近3个月的平均交易额(10分)
func
AverageMoneyThreeMonths
()
{
recently_three_average_amount
:=
stringTurnFloat64
(
basicInfo
[
"recently_three_average_amount"
])
if
recently_three_average_amount
<
1
*
100000
{
h_currentScore
=
0
}
else
if
recently_three_average_amount
<
2
*
100000
&&
recently_three_average_amount
>=
1
*
100000
{
h_currentScore
=
1
}
else
if
recently_three_average_amount
<
3
*
100000
&&
recently_three_average_amount
>=
2
*
100000
{
h_currentScore
=
2
}
else
if
recently_three_average_amount
<
5
*
100000
&&
recently_three_average_amount
>=
3
*
100000
{
h_currentScore
=
3
}
else
if
recently_three_average_amount
<
10
*
100000
&&
recently_three_average_amount
>=
5
*
100000
{
h_currentScore
=
5
}
else
if
recently_three_average_amount
>=
10
*
100000
{
h_currentScore
=
10
}
else
{
h_currentScore
=
0
}
h_totalScore
[
4
]
=
h_currentScore
//设置分数
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
currentScore
,
currentScore
,
currentScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
4
,
33
)
}
//近6个月的平均交易额(10分)
func
AverageMoneySixMonths
()
{
recently_six_max_amount
:=
stringTurnFloat64
(
basicInfo
[
"recently_six_max_amount"
])
if
recently_six_max_amount
<
1
*
100000
{
h_currentScore
=
0
}
else
if
recently_six_max_amount
<
2
*
100000
&&
recently_six_max_amount
>=
1
*
100000
{
h_currentScore
=
1
}
else
if
recently_six_max_amount
<
3
*
100000
&&
recently_six_max_amount
>=
2
*
100000
{
h_currentScore
=
2
}
else
if
recently_six_max_amount
<
5
*
100000
&&
recently_six_max_amount
>=
3
*
100000
{
h_currentScore
=
3
}
else
if
recently_six_max_amount
<
10
*
100000
&&
recently_six_max_amount
>=
5
*
100000
{
h_currentScore
=
5
}
else
if
recently_six_max_amount
>=
10
*
100000
{
h_currentScore
=
10
}
else
{
h_currentScore
=
0
}
h_totalScore
[
5
]
=
h_currentScore
//设置分数
insertScoreMsg
.
FinalScore
,
insertScoreMsg
.
TotalScore
,
insertScoreMsg
.
CurrentScore
=
currentScore
,
currentScore
,
currentScore
insertScoreMsg
.
Weight
=
50
setInsertScoreChanFooter
(
1
,
4
,
33
)
}
cmd/static/main.go
View file @
388e74f8
...
...
@@ -26,8 +26,10 @@ var (
companyBasicInfo
map
[
string
]
string
//公司的逾期数据
companySoreFields
map
[
string
]
string
//公司的历史数据
basicInfo
map
[
string
]
string
//公司的逾期数据
companyAddSore
[]
map
[
string
]
string
companyAddS
c
ore
[]
map
[
string
]
string
//设置等待
wg
sync
.
WaitGroup
)
...
...
@@ -52,13 +54,13 @@ func main() {
setLog
(
"companyData"
,
companyData
)
for
_
,
v
:=
range
companyData
{
insertScoreMsg
.
ComCreditsId
=
stringTurnInt64
(
v
[
"id"
])
getCompanyRunInfo
(
c
)
CompanyInfo
()
EnterPriseCredit
()
//
AddScore()
//
HistoryBussiness()
AddScore
()
HistoryBussiness
()
//PersonalCredit()
}
...
...
@@ -96,7 +98,12 @@ func insertRecord() {
for
insertScoreMsgRecord
:=
range
socreRecordChan
{
//声明service层
connect
:=
dao
.
New
()
//CurrentScore64 := float64(insertScoreMsgRecord.CurrentScore)
//插入数据
//if !math.IsNaN(CurrentScore64) && CurrentScore64 != 0 {
//
//}
insertId
,
err
:=
connect
.
InsertScores
(
ctx
,
insertScoreMsgRecord
)
fmt
.
Print
(
err
)
fmt
.
Print
(
insertId
)
...
...
@@ -116,7 +123,8 @@ func getCompanyRunInfo(c context.Context) {
connect
:=
dao
.
New
()
companyBasicInfo
,
_
=
connect
.
GetCompanyBaseInfoByCid
(
c
,
insertScoreMsg
.
ComCreditsId
)
companySoreFields
,
_
=
connect
.
GetCompanyScoreFieldsByCid
(
c
,
insertScoreMsg
.
ComCreditsId
)
companyAddSore
,
_
=
connect
.
GetCompanyAddSoreByCid
(
c
,
insertScoreMsg
.
ComCreditsId
)
companyAddScore
,
_
=
connect
.
GetCompanyAddSoreByCid
(
c
,
insertScoreMsg
.
ComCreditsId
)
basicInfo
,
_
=
connect
.
GetBasicInfoByCid
(
c
,
insertScoreMsg
.
ComCreditsId
)
}
func
getTimeStamp
()(
timestamp
int64
)
{
...
...
internal/dao/add_score
s
.go
→
internal/dao/add_score.go
View file @
388e74f8
...
...
@@ -13,7 +13,7 @@ func (d *dao) GetCompanyAddSoreByCid(c context.Context, companyId int64) (res []
var
(
rows
*
sql
.
Rows
)
if
rows
,
err
=
d
.
db
.
Query
(
c
,
"select "
+
SqlField
+
" from lie_add_score
s
where com_credits_id = ?"
,
companyId
);
err
!=
nil
{
if
rows
,
err
=
d
.
db
.
Query
(
c
,
"select "
+
SqlField
+
" from lie_add_score where com_credits_id = ?"
,
companyId
);
err
!=
nil
{
err
=
errors
.
WithStack
(
err
)
return
}
...
...
internal/dao/basic_info.go
0 → 100644
View file @
388e74f8
package
dao
import
(
"context"
"fmt"
"github.com/pkg/errors"
"github.com/bilibili/kratos/pkg/database/sql"
)
//通过UID获取用户信息
func
(
d
*
dao
)
GetBasicInfoByCid
(
c
context
.
Context
,
companyId
int64
)
(
res
map
[
string
]
string
,
err
error
)
{
var
(
rows
*
sql
.
Rows
)
if
rows
,
err
=
d
.
db
.
Query
(
c
,
"select "
+
SqlField
+
" from lie_basic_info where com_credits_id = ?"
,
companyId
);
err
!=
nil
{
err
=
errors
.
WithStack
(
err
)
return
}
defer
rows
.
Close
()
if
err
!=
nil
{
fmt
.
Println
(
"select fail,err:"
,
err
)
return
}
twoMap
,
err
:=
GetAllParam
(
rows
)
for
_
,
v
:=
range
twoMap
{
res
=
v
break
}
return
}
\ No newline at end of file
internal/dao/dao.go
View file @
388e74f8
...
...
@@ -25,6 +25,7 @@ type (
InsertScores
(
ctx
context
.
Context
,
score
model
.
Scores
)
(
insertId
int64
,
err
error
)
GetCompanyBaseInfoByCid
(
c
context
.
Context
,
companyId
int64
)
(
r
map
[
string
]
string
,
err
error
)
GetCompanyScoreFieldsByCid
(
c
context
.
Context
,
companyId
int64
)
(
r
map
[
string
]
string
,
err
error
)
GetBasicInfoByCid
(
c
context
.
Context
,
companyId
int64
)
(
r
map
[
string
]
string
,
err
error
)
GetCompanyAddSoreByCid
(
c
context
.
Context
,
companyId
int64
)
(
r
[]
map
[
string
]
string
,
err
error
)
//---静态结束
...
...
internal/model/add_score
s
.go
→
internal/model/add_score.go
View file @
388e74f8
File moved
internal/model/basic_info.go
0 → 100644
View file @
388e74f8
package
model
//
//CREATE TABLE `lie_basic_info` (
//`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '业务明细ID',
//`erp_company_code` varchar(20) NOT NULL DEFAULT '' COMMENT 'erp公司编码',
//`first_order_time` int(11) NOT NULL COMMENT '首次下单时间',
//`total_order_amount` decimal(10,2) NOT NULL COMMENT '历史交易总额(收款总额)',
//`total_gross_profit` decimal(10,2) NOT NULL COMMENT '历史累计毛利',
//`recently_average_amount` decimal(10,2) NOT NULL COMMENT '近6个月平均交易额',
//`recently_max_amount` decimal(10,2) NOT NULL COMMENT '近6个月最大交易额',
//`last_month_amount` decimal(10,2) NOT NULL COMMENT '上个月交易额',
//`reveive_period_aomunt` decimal(10,2) NOT NULL COMMENT '已获账期金额',
//`total_delay_times` int(11) NOT NULL COMMENT '历史逾期次数',
//`mianly_class` varchar(255) NOT NULL COMMENT '主要交易品类',
//`create_time` int(11) NOT NULL COMMENT '创建时间',
//`update_time` int(11) NOT NULL COMMENT '更新时间',
//`recently_three_average_amount` decimal(10,2) NOT NULL COMMENT '近3个月最大交易额',
//`recently_three_max_amount` decimal(10,2) NOT NULL COMMENT '近3个月最大交易额',
//PRIMARY KEY (`id`)
//) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='业务信息';
\ No newline at end of file
internal/service/service.go
View file @
388e74f8
...
...
@@ -88,6 +88,15 @@ func (s *Service) GetCompanyScoreFieldsByCid(c context.Context, companyId int64)
return
}
// 获取公司历史信息
func
(
s
*
Service
)
GetBasicInfoByCid
(
c
context
.
Context
,
companyId
int64
)
(
res
map
[
string
]
string
,
err
error
)
{
//调用DB方法,获取会员数据
res
,
err
=
s
.
dao
.
GetBasicInfoByCid
(
c
,
companyId
)
fmt
.
Print
(
err
)
return
}
// 获取公司加分项
func
(
s
*
Service
)
GetCompanyAddSore
(
c
context
.
Context
,
companyId
int64
)
(
res
[]
map
[
string
]
string
,
err
error
)
{
...
...
logs/info.log
View file @
388e74f8
...
...
@@ -2,3 +2,43 @@
[2019/11/26 14:14:23.325] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 14:16:08.009] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 14:16:08.013] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:51:39.529] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:51:39.532] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:53:18.416] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:53:18.420] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:54:41.442] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:54:41.445] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:54:54.179] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:54:54.182] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:56:57.868] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:56:57.872] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:58:01.374] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:58:01.378] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:58:38.863] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:58:38.866] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:58:58.198] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:58:58.201] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:59:05.011] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:59:05.014] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 15:59:44.117] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 15:59:44.121] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:01:40.815] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:01:40.818] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:02:15.067] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:02:15.070] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:02:46.636] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:02:46.640] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:04:05.286] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:04:05.290] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:04:26.016] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:04:26.020] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:18:06.740] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:18:06.743] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:20:44.245] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:20:44.248] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:89] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 16:22:05.596] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/26 16:22:05.599] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:meinv11 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:0 total_credit_score:0.00 update_time:0]])
[2019/11/26 18:47:37.461] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:90] kaopuserver start%!(EXTRA int=0)
[2019/11/26 18:47:37.465] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:90] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:1 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:LX001 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:10 total_credit_score:0.00 update_time:0]])
[2019/11/26 18:48:22.950] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:91] kaopuserver start%!(EXTRA int=0)
[2019/11/26 18:48:22.954] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:91] companyData%!(EXTRA []map[string]string=[map[apply_account:13277999723 blacklist_hit: company_name:猎芯科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code: ichunt_hunting_core:H id:2 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:1 total_credit_score:0.00 update_time:0] map[apply_account:5695 blacklist_hit: company_name:小明科技 create_time:0 creator: credit_invest_result: dynamic_credit_score:0.00 erp_company_code:LX001 ichunt_hunting_core:H id:5 recom_time_limit: recommended_amount:0.00 score_time:0 static_credit_score:0.00 status:10 total_credit_score:0.00 update_time:0]])
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