TestMember.php 350 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 22/02/2017
  6. * Time: 14:10
  7. */
  8. namespace app\backend\modules\member\models;
  9. class TestMember extends \app\common\models\TestMember
  10. {
  11. protected $casts = [
  12. 'ext' => 'string',
  13. ];
  14. public function getExtAttribute()
  15. {
  16. return 'a';
  17. }
  18. }