GoodsService.php 211 B

1234567891011121314
  1. <?php
  2. namespace app\common\service;
  3. use app\common\model\Goods;
  4. use app\common\traits\ServiceTrait;
  5. class GoodsService
  6. {
  7. use ServiceTrait;
  8. /** @var Goods */
  9. public static $Model = Goods::class;
  10. }