123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2019/11/28
- * Time: 17:28
- */
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class CustomerMonthGift extends Model
- {
- public $timestamps = false;
- protected $table = 'customer_month_gift';
- }
|