12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Maps;
- class BoxActiveUpEventMap
- {
-
- const EVENT_CLOSE_LOCK_OK = '01';
-
- const EVENT_02 = '02';
-
- const EVENT_03 = '03';
-
- const EVENT_BATTERY_CHARGING = '04';
-
- const EVENT_PEDAL_OPEN = '05';
-
- const EVENT_PEDAL_CLOSE = '06';
-
- const EVENT_STOP_MOTION = '07';
- }
|