generated from liutk/owl-admin-base
61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
'plan' => [
|
|
'id' => 'ID',
|
|
'name' => '计划名称',
|
|
'type' => '计划类型',
|
|
'status' => '计划状态',
|
|
'created_at' => '创建时间',
|
|
'updated_at' => '更新时间',
|
|
],
|
|
|
|
'plan_ledger' => [
|
|
'date' => '日期',
|
|
],
|
|
|
|
'plan_performance' => [
|
|
'month' => '月份',
|
|
'store' => '门店',
|
|
'store_category' => '门店分类',
|
|
'store_level' => '门店等级',
|
|
'performance' => '业绩',
|
|
],
|
|
|
|
'plan_hygiene' => [
|
|
'month' => '月份',
|
|
'store' => '门店',
|
|
],
|
|
|
|
'task' => [
|
|
'id' => 'ID',
|
|
'name' => '任务名称',
|
|
'status' => '状态',
|
|
'completed_at' => '完成时间',
|
|
'created_at' => '发布时间',
|
|
],
|
|
|
|
'task_ledger' => [
|
|
'date' => '日期',
|
|
'store' => '门店',
|
|
'store_master' => '店长',
|
|
'status' => '状态',
|
|
],
|
|
|
|
'task_performance' => [
|
|
'month' => '月份',
|
|
'store' => '门店',
|
|
'store_master' => '店长',
|
|
'actual_performance' => '实际业绩',
|
|
'expected_performance' => '目标业绩',
|
|
'status' => '状态',
|
|
],
|
|
|
|
'task_hygiene' => [
|
|
'month' => '月份',
|
|
'store' => '门店',
|
|
'store_master' => '店长',
|
|
'status' => '状态',
|
|
],
|
|
];
|