Nav apraksta

CustomerGiftReceives.php 275B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shensong
  5. * Date: 2019/11/29
  6. * Time: 17:31
  7. */
  8. namespace App;
  9. use Illuminate\Database\Eloquent\Model;
  10. class CustomerGiftReceives extends Model
  11. {
  12. protected $table = 'customer_gift_receives';
  13. public $timestamps = false;
  14. }