| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * '菜单ID' => [
- * '字段英文名' => '字段中文名'
- * ]
- */
- return [
- [
- 'key' => 'order_number',
- 'value' => '流水号',
- ],
- [
- 'key' => 'code',
- 'value' => '供应商编码',
- ],
- [
- 'key' => 'title',
- 'value' => '供应商全称',
- ],
- [
- 'key' => 'easy_title',
- 'value' => '供应商简称',
- ],
- [
- 'key' => 'category_code',
- 'value' => '分类编码',
- ],
- [
- 'key' => 'category_code_title',
- 'value' => '分类名称',
- ],
- [
- 'key' => 'crt_time',
- 'value' => '创建时间',
- ],
- ];
|