12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace catchAdmin\api\model;
- use catcher\base\CatchModel as Model;
- use catcher\traits\db\BaseOptionsTrait;
- use catcher\traits\db\ScopeTrait;
- class Publish extends Model
- {
- use BaseOptionsTrait, ScopeTrait;
-
- public $name = 'publish';
-
- public $field = array(
- 'id',
-
- 'Type',
-
- 'ContentType',
-
- 'Content',
-
- 'Imei',
-
- 'ContentId',
-
- 'AddTime',
-
- 'Version',
-
- 'Status',
- );
-
- public function add($type)
- {
- }
- }
|