1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| -- save basStationType record
| -- mysql
| insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `tenant_id`, `status`) values ( 'menu.basStationType', '0', '/manager/basStationType', 'basStationType', '0' , '0', '1' , '1');
|
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Query 作业站类型', '', '1', 'manager:basStationType:list', '0', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Create 作业站类型', '', '1', 'manager:basStationType:save', '1', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Update 作业站类型', '', '1', 'manager:basStationType:update', '2', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Delete 作业站类型', '', '1', 'manager:basStationType:remove', '3', '1', '1');
|
| -- locale menu name
| basStationType: 'BasStationType',
|
| -- locale field
| basStationType: {
| stationTypeCode: "stationTypeCode",
| stationTypeName: "stationTypeName",
| allowFullPalletOut: "allowFullPalletOut",
| allowEmptyPalletOut: "allowEmptyPalletOut",
| allowPick: "allowPick",
| allowFullPalletIn: "allowFullPalletIn",
| allowEmptyPalletIn: "allowEmptyPalletIn",
| conveyorLine: "conveyorLine",
| allowGroundStation: "allowGroundStation",
| allowGroundBarcodeStation: "allowGroundBarcodeStation",
| },
|
| -- ResourceContent
| import basStationType from './basStationType';
|
| case 'basStationType':
| return basStationType;
|
|