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.

Kouling.php 390B

2 years ago
123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace app\model\kouling;
  3. use crmeb\basic\BaseModel;
  4. use crmeb\traits\ModelTrait;
  5. /**
  6. * 口令表
  7. * Class Kouling
  8. * @package app\model\coin
  9. */
  10. class Kouling extends BaseModel
  11. {
  12. use ModelTrait;
  13. /**
  14. * 数据表主键
  15. * @var string
  16. */
  17. protected $pk = 'id';
  18. /**
  19. * 模型名称
  20. * @var string
  21. */
  22. protected $name = 'kouling';
  23. }