ConfigModel.php 300 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. class ConfigModel extends BaseModel
  4. {
  5. protected $table = 'erp_config';
  6. protected function genSchema(array $schema)
  7. {
  8. // TODO: Implement genSchema() method.
  9. }
  10. public function findConfig() {
  11. return $this->findById(1);
  12. }
  13. }