You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseModel.php 163B

1234567891011121314151617
  1. <?php
  2. namespace crmeb\basic;
  3. use crmeb\traits\ModelTrait;
  4. use think\Model;
  5. /**
  6. * Class BaseModel
  7. * @mixin ModelTrait
  8. */
  9. class BaseModel extends Model
  10. {
  11. }