| 1234567891011121314151617181920 |
- <?php
- namespace app\common\model;
- class StoreModel extends BaseModel
- {
- protected $table = 'erp_store';
- protected function genSchema(array $schema)
- {
- // TODO: Implement genSchema() method.
- }
- public function findAllStore() {
- return $this->order('id','desc')->select();
- }
- }
|