12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace catchAdmin\yunying\model;
- use catcher\base\CatchModel as Model;
- class Insurance extends Model
- {
-
- public $name = 'insurance';
-
- public $field = array(
- 'id',
-
- 'name',
-
- 'price',
-
- 'years',
-
- 'enable',
-
- 'creator_id',
-
- 'created_at',
-
- 'updated_at',
-
- 'deleted_at',
- );
- }
|