1234567891011121314151617181920212223242526272829 |
- <?php
- namespace catchAdmin\device\model;
- use catcher\base\CatchModel as Model;
- class StationPhoto extends Model
- {
-
- public $name = 'station_photos';
-
- public $field = array(
- 'id',
-
- 'url',
-
- 'station_id',
-
- 'type',
-
- 'creator_id',
-
- 'created_at',
-
- 'updated_at',
-
- 'deleted_at',
- );
- }
|