| 1234567891011121314151617181920 |
- <?php
- namespace app\common\model;
- class ConfigModel extends BaseModel
- {
- protected $table = 'erp_config';
- protected function genSchema(array $schema)
- {
- // TODO: Implement genSchema() method.
- }
- public function findConfig() {
- return $this->findById(1);
- }
- }
|