Commit a24626cc by Joneq

去除map没有重新赋值的错误

parent 2ddaa705
...@@ -4,11 +4,7 @@ package main ...@@ -4,11 +4,7 @@ package main
//加分项30分) //加分项30分)
func AddScore() { func AddScore() {
IndustryReputation()
OperatingRate()
DownstreamCustomerType()
NumberOfGuarantors()
Collateral()
} }
//业界口碑(2分)) //业界口碑(2分))
......
...@@ -22,6 +22,7 @@ func CompanyInfo() { ...@@ -22,6 +22,7 @@ func CompanyInfo() {
sumScore float32 = 0 sumScore float32 = 0
joinNum float32 = 0 joinNum float32 = 0
) )
//查找出所有不是0的分值 //查找出所有不是0的分值
for i :=0;i < len(totalScore) ; i++ { for i :=0;i < len(totalScore) ; i++ {
if totalScore[i] != 0 { if totalScore[i] != 0 {
...@@ -29,12 +30,13 @@ func CompanyInfo() { ...@@ -29,12 +30,13 @@ func CompanyInfo() {
sumScore += totalScore[i] * 0.5 sumScore += totalScore[i] * 0.5
} }
} }
//经过权重计算之后的总分值 //经过权重计算之后的总分值
sumScore = sumScore / joinNum sumScore = sumScore / joinNum
insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = sumScore,sumScore,sumScore insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = sumScore,sumScore,sumScore
insertScoreMsg.Weight = 50 insertScoreMsg.Weight = 50
setInserScoreChanFooter(1,0,1) setInsertScoreChanFooter(1,0,1)
} }
...@@ -44,7 +46,7 @@ func EstablishmentTime() { ...@@ -44,7 +46,7 @@ func EstablishmentTime() {
establishment_time := stringTurnInt64(companyBasicInfo["establishment_time"]) establishment_time := stringTurnInt64(companyBasicInfo["establishment_time"])
diffTime := getTimeStamp() - establishment_time diffTime := getTimeStamp() - establishment_time
//年以上有分 //年以上有分
if diffTime > (3600 * 24 * 365 * 5) { if diffTime > (3600 * 24 * 365 * 5) {
currentScore = 1 currentScore = 1
} else { } else {
...@@ -56,7 +58,7 @@ func EstablishmentTime() { ...@@ -56,7 +58,7 @@ func EstablishmentTime() {
//设置分数 //设置分数
insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = currentScore,currentScore,currentScore insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = currentScore,currentScore,currentScore
insertScoreMsg.Weight = 50 insertScoreMsg.Weight = 50
setInserScoreChanFooter(1,1,8) setInsertScoreChanFooter(1,1,8)
} }
...@@ -78,7 +80,7 @@ func CompanyNature() { ...@@ -78,7 +80,7 @@ func CompanyNature() {
insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = currentScore,currentScore,currentScore insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = currentScore,currentScore,currentScore
insertScoreMsg.Weight = 50 insertScoreMsg.Weight = 50
setInserScoreChanFooter(1,1,9) setInsertScoreChanFooter(1,1,9)
} }
//5年内法人变更次数(1分) //5年内法人变更次数(1分)
...@@ -96,7 +98,7 @@ func ChangeslegalInFiveYears() { ...@@ -96,7 +98,7 @@ func ChangeslegalInFiveYears() {
totalScore[2]= currentScore totalScore[2]= currentScore
setInserScoreChanFooter(1,1,10) setInsertScoreChanFooter(1,1,10)
} }
//注册资本(2分) //注册资本(2分)
...@@ -114,7 +116,7 @@ func RegisteredCapital() { ...@@ -114,7 +116,7 @@ func RegisteredCapital() {
totalScore[3]= currentScore totalScore[3]= currentScore
setInserScoreChanFooter(1,1,11) setInsertScoreChanFooter(1,1,11)
} }
//年纳税额(2分) //年纳税额(2分)
...@@ -131,7 +133,7 @@ func AnnualTaxRate() { ...@@ -131,7 +133,7 @@ func AnnualTaxRate() {
totalScore[4]= currentScore totalScore[4]= currentScore
setInserScoreChanFooter(1,1,12) setInsertScoreChanFooter(1,1,12)
} }
//近两年内有无诉讼(2分) //近两年内有无诉讼(2分)
...@@ -146,7 +148,7 @@ func lawsuitsInPastTwoYars() { ...@@ -146,7 +148,7 @@ func lawsuitsInPastTwoYars() {
totalScore[5]= currentScore totalScore[5]= currentScore
setInserScoreChanFooter(1,1,13) setInsertScoreChanFooter(1,1,13)
} }
//社保参保人数(1分) //社保参保人数(1分)
...@@ -162,7 +164,7 @@ func NumberOfSocial() { ...@@ -162,7 +164,7 @@ func NumberOfSocial() {
totalScore[6]= currentScore totalScore[6]= currentScore
setInserScoreChanFooter(1,1,14) setInsertScoreChanFooter(1,1,14)
} }
......
package main package main
var(
e_currentScore float32
e_totalScore [2]float32
)
//企业征信(10分) //企业征信(10分)
func EnterPriseCredit() { func EnterPriseCredit() {
var(
sumScore float32 = 0
joinNum float32 = 0
)
IsEnterpriseOverdueWhether() IsEnterpriseOverdueWhether()
IsHistoryOverdue() IsHistoryOverdue()
//查找出所有不是0的分值
for i :=0;i < len(e_totalScore) ; i++ {
if e_totalScore[i] != 0 {
joinNum += 1
sumScore += e_totalScore[i] * 0.5
}
}
//经过权重计算之后的总分值
sumScore = sumScore / joinNum
insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = sumScore,sumScore,sumScore
insertScoreMsg.Weight = 50
setInsertScoreChanFooter(1,0,2)
} }
//企业有无负债(5分) //企业有无负债(5分)
func IsEnterpriseOverdueWhether() { func IsEnterpriseOverdueWhether() {
company_has_liabilities := stringTurnInt64(companySoreFields["company_has_liabilities"])
if company_has_liabilities == 1 {
e_currentScore = 0
}else{
e_currentScore = 5
}
e_totalScore[0]= e_currentScore
//设置分数
insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = e_currentScore,e_currentScore,e_currentScore
insertScoreMsg.Weight = 50
setInsertScoreChanFooter(1,2,15)
} }
//历史有无逾期(5分) //历史有无逾期(5分)
func IsHistoryOverdue() { func IsHistoryOverdue() {
history_overdue := stringTurnInt64(companySoreFields["history_overdue"])
if history_overdue == 1 {
e_currentScore = 0
}else{
e_currentScore = 5
}
e_totalScore[1]= e_currentScore
//设置分数
insertScoreMsg.FinalScore ,insertScoreMsg.TotalScore,insertScoreMsg.CurrentScore = e_currentScore,e_currentScore,e_currentScore
insertScoreMsg.Weight = 50
setInsertScoreChanFooter(1,2,16)
} }
\ No newline at end of file
...@@ -24,6 +24,10 @@ var ( ...@@ -24,6 +24,10 @@ var (
insertScoreMsg model.Scores insertScoreMsg model.Scores
//公司的详细数据 //公司的详细数据
companyBasicInfo map[string]string companyBasicInfo map[string]string
//公司的逾期数据
companySoreFields map[string]string
//公司的逾期数据
companyAddSore map[string]string
//设置等待 //设置等待
wg sync.WaitGroup wg sync.WaitGroup
) )
...@@ -40,20 +44,23 @@ func main() { ...@@ -40,20 +44,23 @@ func main() {
go insertRecord() go insertRecord()
svc := service.New() svc := service.New()
ctx := context.Background() c := context.Background()
//调用服务获取公司信息,然后进行全局赋值 //调用服务获取公司信息,然后进行全局赋值
companyData,_ = svc.GetCompanyCresitsList(ctx) companyData,_ = svc.GetCompanyCresitsList(c)
setLog("companyData",companyData)
for _,v :=range companyData{ for _,v :=range companyData{
insertScoreMsg.ComCreditsId = stringTurnInt64(v["id"]) insertScoreMsg.ComCreditsId = stringTurnInt64(v["id"])
companyBasicInfo,_ = svc.GetCompanyBaseInfoByCid(ctx,insertScoreMsg.ComCreditsId)
CompanyInfo() CompanyInfo()
EnterPriseCredit() EnterPriseCredit()
//AddScore()
//HistoryBussiness() //HistoryBussiness()
//PersonalCredit() //PersonalCredit()
//AddScore()
} }
//赋值完关闭通道 //赋值完关闭通道
...@@ -71,9 +78,14 @@ func getConfig() { ...@@ -71,9 +78,14 @@ func getConfig() {
panic(err) panic(err)
} }
//初始化日志目录 //初始化日志目录
setLog("kaopuserver start",0)
}
func setLog(k string,v interface{}){
//初始化日志目录
log.Init(&log.Config{Dir: "logs"}) log.Init(&log.Config{Dir: "logs"})
defer log.Close() defer log.Close()
log.Info("caipu-server start") log.Info(k,v)
} }
...@@ -81,25 +93,31 @@ func getConfig() { ...@@ -81,25 +93,31 @@ func getConfig() {
func insertRecord() { func insertRecord() {
ctx := context.Background() ctx := context.Background()
for insertScoreMsg := range socreRecordChan{ for insertScoreMsgRecord := range socreRecordChan{
//声明service层 //声明service层
connect := dao.New() connect := dao.New()
//插入数据 //插入数据
insertId,err := connect.InsertScores(ctx,insertScoreMsg) insertId,err := connect.InsertScores(ctx,insertScoreMsgRecord)
fmt.Print(err) fmt.Print(err)
fmt.Print(insertId) fmt.Print(insertId)
} }
defer wg.Done() defer wg.Done()
} }
//设置插入的分数头 //设置插入的分数头
func setInserScoreChanFooter(_typy,project_pid,project_id int8) { func setInsertScoreChanFooter(_typy,project_pid,project_id int8) {
insertScoreMsg.Type,insertScoreMsg.ProjectPid,insertScoreMsg.ProjectId = _typy,project_pid,project_id insertScoreMsg.Type,insertScoreMsg.ProjectPid,insertScoreMsg.ProjectId = _typy,project_pid,project_id
socreRecordChan <- insertScoreMsg socreRecordChan <- insertScoreMsg
} }
//获取详细的计算基本数据
func getCompanyRunInfo(c context.Context) {
//声明service层
connect := dao.New()
companyBasicInfo,_ = connect.GetCompanyBaseInfoByCid(c,insertScoreMsg.ComCreditsId)
companySoreFields,_ = connect.GetCompanyScoreFieldsByCid(c,insertScoreMsg.ComCreditsId)
}
func getTimeStamp()(timestamp int64) { func getTimeStamp()(timestamp int64) {
return time.Now().Unix() return time.Now().Unix()
} }
......
package dao
import (
"context"
"fmt"
"github.com/pkg/errors"
"github.com/bilibili/kratos/pkg/database/sql"
)
//通过UID获取用户加分信息
func (d *dao) GeAddScoresByCid(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_add_scores 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
...@@ -27,7 +27,6 @@ func GetAllParam(rows *sql.Rows)(res []map[string]string, err error) { ...@@ -27,7 +27,6 @@ func GetAllParam(rows *sql.Rows)(res []map[string]string, err error) {
scans[i] = &vals[i] scans[i] = &vals[i]
} }
row := make(map[string]string)
for rows.Next(){ for rows.Next(){
err = rows.Scan(scans...) err = rows.Scan(scans...)
...@@ -36,6 +35,8 @@ func GetAllParam(rows *sql.Rows)(res []map[string]string, err error) { ...@@ -36,6 +35,8 @@ func GetAllParam(rows *sql.Rows)(res []map[string]string, err error) {
return return
} }
row := make(map[string]string)
for k,v:=range vals{ for k,v:=range vals{
key := cols[k] key := cols[k]
row[key] = string(v) row[key] = string(v)
......
package dao
import (
"context"
"fmt"
"github.com/pkg/errors"
"github.com/bilibili/kratos/pkg/database/sql"
)
//通过UID获取用户信息
func (d *dao) GetCompanyScoreFieldsByCid(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_credit_score_fields 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
...@@ -24,6 +24,7 @@ type ( ...@@ -24,6 +24,7 @@ type (
GetCompanyCresitsList(ctx context.Context) (r []map[string]string, err error) GetCompanyCresitsList(ctx context.Context) (r []map[string]string, err error)
InsertScores(ctx context.Context, score model.Scores) (insertId int64, err error) InsertScores(ctx context.Context, score model.Scores) (insertId int64, err error)
GetCompanyBaseInfoByCid(c context.Context, companyId int64) (r map[string]string, 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)
//---静态结束 //---静态结束
CountYuqi(ctx context.Context,project_id int) (r []map[string]interface{},err error) //计算逾期 CountYuqi(ctx context.Context,project_id int) (r []map[string]interface{},err error) //计算逾期
......
package model
/*CREATE TABLE `lie_add_score` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '加分项id',
`com_credits_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联信用分id',
`project_name` varchar(50) NOT NULL DEFAULT '' COMMENT '项目名',
`info` varchar(150) NOT NULL DEFAULT '' COMMENT '信息备注',
`current_score` decimal(6,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '得分 没有进行权重运算的得分',
`weight` decimal(5,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '权重',
`final_score` decimal(6,2) NOT NULL DEFAULT '0.00' COMMENT '最终得分-终评分 进行了权重运算后的得分',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1正常 0删除',
`create_time` int(11) unsigned NOT NULL DEFAULT '0',
`update_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `company_code` (`com_credits_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COMMENT='加分项表';*/
\ No newline at end of file
package model
//CREATE TABLE `lie_credit_score_fields` (
//`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
//`company_has_liabilities` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '企业有无负债 1有 0没有',
//`history overdue` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '历史有无逾期 1有 0无',
//`age` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '年龄',
//`marital_status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '婚姻状况 1是 0否',
//`account_ratio` decimal(6,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '违约账户比 50.23',
//`guaranty` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '对外担保 1有 0没有',
//`two_years_th_days_overdue_times` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '近2年内最大逾期金额',
//`two_years_max_overdue_amount` decimal(14,4) NOT NULL,
//`is_exist_now_overdue` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '1 是 0否',
//`presence_of_mortgage` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '有无房贷 1有 0没有',
//`two_months_credit_view_nums` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '近两个月征信查询次数',
//`credit_card_total` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000' COMMENT '信用卡总额度',
//`maximum_credit_card_limit` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000' COMMENT '单张信用卡最高额度',
//`com_credits_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联公司信用id',
//`type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '1个人 2企业',
//`create_time` int(11) unsigned NOT NULL DEFAULT '0',
//`update_time` int(11) unsigned NOT NULL DEFAULT '0',
//PRIMARY KEY (`id`)
//) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='征信相关评分字段表';
\ No newline at end of file
...@@ -79,5 +79,14 @@ func (s *Service) GetCompanyBaseInfoByCid(c context.Context, companyId int64) (r ...@@ -79,5 +79,14 @@ func (s *Service) GetCompanyBaseInfoByCid(c context.Context, companyId int64) (r
return return
} }
// 获取公司用户列表
func (s *Service) GetCompanyScoreFieldsByCid(c context.Context, companyId int64) (res map[string]string, err error) {
//调用DB方法,获取会员数据
res, err = s.dao.GetCompanyScoreFieldsByCid(c,companyId)
fmt.Print(err)
return
}
//----------静态结束 //----------静态结束
\ No newline at end of file
[2019/11/26 14:08:40.892] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748520]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:08:40.942] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748520]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:08:40.992] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748520]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:08:41.042] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748520]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:08:41.093] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:08:41.143] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:08:41.193] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:08:41.243] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748521]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:08:41.510] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748521]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:08:41.561] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748521]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:08:41.611] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748521]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:08:41.661] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748521]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:08:41.736] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:08:41.786] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:08:41.878] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:08:41.928] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:08:41.978] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:08:42.028] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748521]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:08:42.078] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748522]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:08:42.128] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748522]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:08:42.178] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748522]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:08:42.228] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748522]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:09:19.637] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748559]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:09:19.679] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748559]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:09:19.720] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748559]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:09:19.762] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748559]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:09:19.804] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748559]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:09:19.845] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748559]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:09:19.887] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748559]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:09:19.929] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748559]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:09:19.971] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748559]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:09:20.012] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748559]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:09:20.055] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748560]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:09:20.096] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748560]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:09:20.138] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748560]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:09:20.179] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748560]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:09:20.221] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748560]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:09:20.263] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748560]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:09:20.304] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748560]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:09:20.346] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748560]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:09:20.388] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748560]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:09:20.430] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748560]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:09:20.471] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748560]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:09:20.513] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748560]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:09:45.381] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748585]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:09:45.484] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748585]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:09:45.570] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748585]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:09:45.779] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748585]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:09:45.887] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748585]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:09:46.016] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748585]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:09:46.122] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:09:46.197] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748586]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:09:46.272] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748586]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:09:46.413] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748586]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:09:46.490] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748586]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:09:46.573] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748586]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:09:46.648] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:09:46.732] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:09:46.776] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:09:46.826] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:09:46.876] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:09:46.926] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748586]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:09:46.976] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748586]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:09:47.035] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748586]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:09:47.085] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748587]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:09:47.135] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748587]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:10:43.874] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748643]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:10:43.924] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748643]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:10:43.975] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748643]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:10:44.024] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748643]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:10:44.113] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:10:44.183] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:10:44.233] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:10:44.283] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748644]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:10:44.333] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748644]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:10:44.392] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748644]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:10:44.442] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748644]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/26 14:10:44.492] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 8 1 1 50 1 5 1574748644]: Error 1062: Duplicate entry '1-1-8-5' for key 'type_2')
[2019/11/26 14:10:44.542] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 9 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-9-5' for key 'type_2')
[2019/11/26 14:10:44.592] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 10 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-10-5' for key 'type_2')
[2019/11/26 14:10:44.642] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 11 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-11-5' for key 'type_2')
[2019/11/26 14:10:44.692] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 12 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-12-5' for key 'type_2')
[2019/11/26 14:10:44.742] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 13 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-13-5' for key 'type_2')
[2019/11/26 14:10:44.800] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 1 14 0 0 50 0 5 1574748644]: Error 1062: Duplicate entry '1-1-14-5' for key 'type_2')
[2019/11/26 14:10:44.938] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 1 0.6666667 0.6666667 50 0.6666667 5 1574748644]: Error 1062: Duplicate entry '1-0-1-5' for key 'type_2')
[2019/11/26 14:10:45.032] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 15 5 5 50 5 5 1574748644]: Error 1062: Duplicate entry '1-2-15-5' for key 'type_2')
[2019/11/26 14:10:45.223] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 2 16 5 5 50 5 5 1574748645]: Error 1062: Duplicate entry '1-2-16-5' for key 'type_2')
[2019/11/26 14:10:45.357] [ERROR] [/usr/local/var/www/ichunt/kaopu-server/internal/dao/scores.go:18] db.DemoExec.Exec(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) error(exec:INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?), args:[1 0 2 2.5 2.5 50 2.5 5 1574748645]: Error 1062: Duplicate entry '1-0-2-5' for key 'type_2')
[2019/11/20 13:33:35.764] [INFO] [F:/golang/src/caipu-server/cmd/main.go:26] caipu-server start [2019/11/26 14:14:23.322] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:88] kaopuserver start%!(EXTRA int=0)
[2019/11/20 13:33:35.774] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:98] blademaster: start http listen addr: 0.0.0.0:8000 [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/20 13:42:14.484] [INFO] [F:/golang/src/caipu-server/cmd/main.go:33] get a signal interrupt [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/20 13:42:14.484] [INFO] [F:/golang/src/caipu-server/cmd/main.go:40] caipu-server exit [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/20 13:42:14.484] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:106] blademaster: server closed
[2019/11/20 18:43:38.619] [INFO] [F:/golang/src/caipu-server/cmd/main.go:22] caipu-server start
[2019/11/20 18:43:38.628] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:98] blademaster: start http listen addr: 0.0.0.0:8000
[2019/11/20 18:49:14.342] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 18:49:14.352] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:98] blademaster: start http listen addr: 0.0.0.0:8000
[2019/11/20 18:49:48.413] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 18:49:48.424] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:98] blademaster: start http listen addr: 0.0.0.0:8000
[2019/11/20 18:50:14.699] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 18:50:14.711] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:98] blademaster: start http listen addr: 0.0.0.0:8000
[2019/11/20 18:50:29.051] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 18:50:29.074] [INFO] [F:/golang/src/github.com/bilibili/kratos/pkg/net/http/blademaster/server.go:98] blademaster: start http listen addr: 0.0.0.0:8000
[2019/11/20 20:00:18.062] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:01:50.681] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:02:51.936] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:04:42.327] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:07:19.511] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:09:57.209] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:10:47.784] [INFO] [F:/golang/src/caipu-server/cmd/a.go:22] caipu-server start
[2019/11/20 20:39:22.845] [INFO] [F:/golang/src/caipu-server/cmd/main.go:21] caipu-server start
[2019/11/20 20:40:10.580] [INFO] [F:/golang/src/caipu-server/cmd/main.go:21] caipu-server start
[2019/11/21 10:15:12.824] [INFO] [D:/gocode/caipu-server/cmd/main.go:24] caipu-server start
[2019/11/21 10:34:31.591] [INFO] [D:/gocode/caipu-server/cmd/main.go:24] caipu-server start
[2019/11/21 10:37:59.963] [INFO] [D:/gocode/kaopu-server/cmd/main.go:24] caipu-server start
[2019/11/21 17:01:12.084] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:18] caipu-server start
[2019/11/21 17:02:38.829] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:19] caipu-server start
[2019/11/21 17:03:00.403] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:03:10.790] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:11:41.014] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:12:10.181] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:14:39.534] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:15:01.908] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:15:22.437] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:16:55.769] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:20] caipu-server start
[2019/11/21 17:21:52.590] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:27] caipu-server start
[2019/11/21 17:22:24.083] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:27] caipu-server start
[2019/11/21 17:23:28.447] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:24:17.148] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:27:09.764] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:27:17.857] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:29:23.004] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:30:25.382] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:31:53.080] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:32:38.387] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:33:21.783] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 17:33:34.616] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 17:35:20.751] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:37:29.678] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 17:59:02.082] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 18:45:56.411] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 18:46:48.980] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 18:49:08.615] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 18:56:20.039] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:00:25.701] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:01:09.443] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:01:30.621] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:08:30.137] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:10:13.056] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:10:41.757] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:13:46.905] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:17:28.590] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:18:15.720] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:18:51.319] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:20:34.017] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:21:37.742] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:28:22.747] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:28:53.162] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:29:07.819] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:30:37.659] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:30:48.842] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:34:11.613] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:25] caipu-server start
[2019/11/21 19:34:22.510] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:35:55.724] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:39:18.213] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:52:17.932] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:54:13.744] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:57:39.836] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 19:58:17.249] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 20:00:02.765] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 20:00:14.754] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/21 20:06:30.516] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:27] caipu-server start
[2019/11/22 09:44:25.607] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:27] caipu-server start
[2019/11/22 09:44:53.200] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 09:46:11.718] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:17:53.035] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:18:15.651] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:19:55.117] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:22:53.474] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:23:16.619] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:36:27.548] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:36:48.244] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:37:03.628] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:37:39.399] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:39:23.086] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:41:10.294] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:47:12.050] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 10:54:12.903] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:15:19.665] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:17:06.932] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:17:54.659] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:18:15.760] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:18:41.706] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:18:51.954] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:21:40.596] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:22:01.740] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:23:05.293] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:41:20.872] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:41:47.750] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:42:07.965] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:42:16.006] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:42:26.070] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:42:53.714] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:43:01.319] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:43:10.727] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:43:16.534] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:43:31.306] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:43:42.457] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:43:53.672] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:44:32.568] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:49:30.150] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 11:50:03.869] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:26] caipu-server start
[2019/11/22 13:28:22.506] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:39] caipu-server start
[2019/11/22 13:49:40.591] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:42] caipu-server start
[2019/11/22 13:49:46.256] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:42] caipu-server start
[2019/11/22 13:50:19.103] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:41] caipu-server start
[2019/11/22 13:50:24.217] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:42] caipu-server start
[2019/11/22 14:13:58.691] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/move/main.go:24] caipu-server start
[2019/11/22 14:27:12.582] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:43] caipu-server start
[2019/11/22 14:39:31.047] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:46] caipu-server start
[2019/11/22 14:43:04.310] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:46] caipu-server start
[2019/11/22 14:43:25.337] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:48] caipu-server start
[2019/11/22 14:46:08.195] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:49] caipu-server start
[2019/11/25 10:06:06.845] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:56] caipu-server start
[2019/11/25 10:08:30.374] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:56] caipu-server start
[2019/11/25 10:09:29.481] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:56] caipu-server start
[2019/11/25 10:10:40.606] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:56] caipu-server start
[2019/11/25 10:17:03.956] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:56] caipu-server start
[2019/11/25 10:17:41.843] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 11:05:31.260] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:05:57.945] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:06:24.565] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:07:09.298] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:07:32.426] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:07:44.144] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:07:58.406] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:08:09.405] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:08:18.052] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:08:35.048] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:15:58.866] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:16:25.611] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:16:33.485] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:16:42.338] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:19:30.689] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:20:04.876] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:20:53.952] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:21:08.519] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:21:38.955] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:24:09.355] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:24:29.032] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:24:36.357] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:25:37.609] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:27:57.132] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:29:16.271] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:31:26.676] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:31:45.648] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:31:54.107] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:32:08.162] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:32:22.410] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:32:33.503] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:32:40.991] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:32:51.009] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:32:58.812] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:33:25.639] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:33:33.157] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:35:13.300] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:35:36.926] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:37:00.487] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:38:52.623] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:39:11.305] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:39:29.516] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:41:07.845] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:48:00.471] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:49:07.113] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:50:41.784] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 11:51:11.953] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:37:30.454] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:41:50.379] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:42:14.771] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:42:35.434] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:42:50.451] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:44:10.739] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:44:53.373] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:47:14.713] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:47:31.565] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:48:50.246] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:49:12.904] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:51:48.841] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:51:59.804] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 13:55:03.347] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:03:55.439] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:04:33.969] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:04:41.093] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:05:46.375] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:06:01.927] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:07:29.742] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:08:17.441] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:08:47.229] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:08:59.329] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:11:44.858] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:58] caipu-server start
[2019/11/25 14:15:03.769] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:15:33.797] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:16:38.994] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:16:42.909] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:22:06.918] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:25:54.037] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:26:18.766] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:26:57.074] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:27:05.682] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:59] caipu-server start
[2019/11/25 14:28:35.763] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:29:23.430] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:29:38.412] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:29:48.466] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:30:36.747] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:31:31.937] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:41:01.973] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 14:41:52.333] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:62] caipu-server start
[2019/11/25 15:58:03.453] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:63] caipu-server start
[2019/11/25 15:58:10.193] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:63] caipu-server start
[2019/11/25 15:58:18.486] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:63] caipu-server start
[2019/11/25 15:58:25.374] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:63] caipu-server start
[2019/11/25 16:04:52.834] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 16:06:34.256] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 16:07:09.622] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 16:07:30.215] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 16:08:23.058] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 17:09:19.290] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 17:10:22.523] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 17:10:59.905] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 17:11:40.761] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:13:25.558] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/25 17:14:04.150] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:16:46.948] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:17:24.147] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:17:29.643] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:18:50.226] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:25:29.873] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/25 17:35:25.055] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:36:13.579] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 17:39:49.852] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:47:44.444] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:50:18.355] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:50:45.717] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:52:10.937] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:52:43.048] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:55:49.638] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:77] caipu-server start
[2019/11/25 17:58:01.863] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:58:20.307] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 17:59:10.185] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:01:29.302] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:02:17.206] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:05:47.821] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:06:16.273] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:06:26.723] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:06:47.276] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:06:58.597] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:07:31.941] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 18:44:04.196] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 18:44:14.482] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 18:45:26.884] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 18:45:31.148] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 18:45:53.256] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:69] caipu-server start
[2019/11/25 18:46:51.750] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:69] caipu-server start
[2019/11/25 19:29:39.290] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 19:30:01.571] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 19:34:09.822] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 19:35:34.066] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 19:36:50.037] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 19:37:02.573] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/25 19:46:54.194] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 19:48:42.586] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/25 19:52:31.401] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/25 19:54:53.134] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/25 19:55:21.030] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 19:56:50.837] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/25 19:59:02.549] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/25 19:59:10.735] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/25 19:59:20.506] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:72] caipu-server start
[2019/11/25 19:59:55.539] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 20:00:13.941] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 20:00:58.563] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/25 20:02:25.883] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/26 09:59:52.203] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/26 10:00:47.411] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/26 10:02:52.480] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/26 10:03:37.917] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
[2019/11/26 10:13:09.595] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/26 10:13:32.899] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:75] caipu-server start
[2019/11/26 10:20:01.059] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/26 10:21:18.273] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:74] caipu-server start
[2019/11/26 10:25:36.417] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/26 10:26:24.076] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:73] caipu-server start
[2019/11/26 10:53:56.988] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:78] caipu-server start
[2019/11/26 10:55:53.465] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:78] caipu-server start
[2019/11/26 10:59:33.908] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/26 11:04:01.646] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/26 11:04:35.443] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:69] caipu-server start
[2019/11/26 11:05:16.839] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:69] caipu-server start
[2019/11/26 11:11:13.459] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:69] caipu-server start
[2019/11/26 11:20:03.328] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:70] caipu-server start
[2019/11/26 11:22:26.430] [INFO] [/usr/local/var/www/ichunt/kaopu-server/cmd/static/main.go:76] caipu-server start
...@@ -2,3 +2,4 @@ ...@@ -2,3 +2,4 @@
[2019/11/21 17:22:25.088] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Query query(SELECT * FROM lie_com_credits ) args([]) time: 1.004363403s [2019/11/21 17:22:25.088] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Query query(SELECT * FROM lie_com_credits ) args([]) time: 1.004363403s
[2019/11/21 17:23:29.451] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Query query(SELECT * FROM lie_com_credits ) args([]) time: 1.003427317s [2019/11/21 17:23:29.451] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Query query(SELECT * FROM lie_com_credits ) args([]) time: 1.003427317s
[2019/11/21 17:24:18.153] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Query query(SELECT * FROM lie_com_credits ) args([]) time: 1.004311142s [2019/11/21 17:24:18.153] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Query query(SELECT * FROM lie_com_credits ) args([]) time: 1.004311142s
[2019/11/26 14:08:41.510] [WARN] [/Users/gongyang/go/pkg/mod/github.com/bilibili/kratos@v0.3.1/pkg/database/sql/sql.go:679] sql_client slow log statement: Exec query(INSERT INTO `lie_scores` (`type`, `project_pid`, `project_id`, `total_score`, `current_score`, `weight`, `final_score`, `com_credits_id`, `create_time`)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)) args([1 2 15 5 5 50 5 5 1574748521]) time: 265.318628ms
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 sign in to comment