Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
aic_duty_strategy
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yinxiaoling
aic_duty_strategy
Commits
8f08374a
Commit
8f08374a
authored
May 20, 2020
by
yinxiaoling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
主叫号码固定
parent
b02a5656
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Tool.php
app/Http/Controllers/Tool.php
+1
-1
DatabaseSeeder.php
database/seeds/DatabaseSeeder.php
+1
-1
No files found.
app/Http/Controllers/Tool.php
View file @
8f08374a
...
@@ -39,7 +39,7 @@ trait Tool
...
@@ -39,7 +39,7 @@ trait Tool
}
}
}
}
public
function
getAllowCallNumber
(){
public
function
getAllowCallNumber
(){
return
[
90002
,
80006
];
return
[
90002
];
}
}
...
...
database/seeds/DatabaseSeeder.php
View file @
8f08374a
...
@@ -79,7 +79,7 @@ class DatabaseSeeder extends Seeder
...
@@ -79,7 +79,7 @@ class DatabaseSeeder extends Seeder
$table
->
unsignedSmallInteger
(
'is_created'
)
->
default
(
0
)
->
comment
(
'是否新建任务(0未建 1已建)'
);
$table
->
unsignedSmallInteger
(
'is_created'
)
->
default
(
0
)
->
comment
(
'是否新建任务(0未建 1已建)'
);
$table
->
unsignedSmallInteger
(
'created_fail_number'
)
->
default
(
0
)
->
comment
(
'任务创建失败尝试次数'
);
$table
->
unsignedSmallInteger
(
'created_fail_number'
)
->
default
(
0
)
->
comment
(
'任务创建失败尝试次数'
);
$table
->
string
(
'create_fail_reason'
,
500
)
->
comment
(
'记录接口返回失败原因'
);
$table
->
string
(
'create_fail_reason'
,
500
)
->
nullable
()
->
comment
(
'记录接口返回失败原因'
);
$table
->
timestamp
(
'created_at'
)
->
nullable
();
$table
->
timestamp
(
'created_at'
)
->
nullable
();
});
});
//加索引
//加索引
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment