Commit af921c1f authored by yinxiaoling's avatar yinxiaoling

导入日期添加

parent d2c02e44
......@@ -239,6 +239,7 @@ class StrategyService
'name'=>$v->name,
'phone'=>$v->phone,
'duty_date'=>$v->duty_date,
'import_date'=>$v->created_at,
'parent_sn'=>$strategyInfo['parent_sn'],
'call_number'=>$strategyInfo['call_number'],
'project_sn'=>$project_sn[0],//$strategyInfo['project_sn'],
......@@ -266,6 +267,7 @@ class StrategyService
'name'=>$v->name,
'phone'=>$v->phone,
'duty_date'=>$v->duty_date,
'import_date'=>$v->created_at,
'parent_sn'=>$strategyInfo['parent_sn'],
'call_number'=>$strategyInfo['call_number'],
'project_sn'=>$project_sn[0],
......@@ -279,6 +281,7 @@ class StrategyService
'name'=>$v->name,
'phone'=>$v->phone,
'duty_date'=>$v->duty_date,
'import_date'=>$v->created_at,
'parent_sn'=>$strategyInfo['parent_sn'],
'call_number'=>$strategyInfo['call_number'],
'project_sn'=>$project_sn[1],
......
......@@ -68,8 +68,9 @@ class DatabaseSeeder extends Seeder
$table->uuid('strategy_sn')->comment('策略sn编号'); //sn编号
$table->char('name',50)->nullable()->comment('姓名');
$table->date('duty_date')->nullable()->comment('值班日期(年月日)');
$table->date('import_date')->nullable()->comment('导入日期(年-月-日 时:分:秒)');
$table->unsignedBigInteger('phone')->comment('手机号');
$table->char('call_number',50)->comment('主叫号码');
$table->char('call_number',50)->comment('主叫号码');
$table->date('call_date')->comment('外呼时间(年月日)');
$table->time('call_time')->comment('外呼时间(时分秒)');
$table->char('parent_sn',50)->comment('主账号名');
......
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 to comment