Ware.php 214 B

12345678910111213141516
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\report\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class Ware extends Model
  9. {
  10. // protected $prefix='wsm_';
  11. protected $name='warehouse_info';
  12. }