| 1234567891011121314151617181920212223242526 |
- <?php
- namespace app\common\model;
- class Store extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'stores';
- /**
- * @var array
- */
- protected $auto = [];
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- }
|