1234567891011121314151617181920 |
- <?php
- namespace App\Models\Log;
- use Illuminate\Database\Eloquent\Model;
- class ClickWeixinLogModel extends Model
- {
- //
- protected $connection = "mysql_datalog";
- protected $table = "click_weixin_logs";
- protected $dateFormat = 'U';
- public const UPDATED_AT = null;
- protected $fillable = ['uid', 'from', 'copy_uid', 'copy_type', 'device'];
- }
|