Card.php 168 B

12345678910
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Card extends Model{
  5. public function numbers(){
  6. return $this->hasMany('app\common\model\card\Number');
  7. }
  8. }