UserMessage.php 470 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Models\IM;
  3. use Illuminate\Database\Eloquent\Model;
  4. class UserMessage extends Model
  5. {
  6. protected $connection = 'mysql_fenpeiduixiang';
  7. protected $table = "user_messages";
  8. public $timestamps = false;
  9. protected $fillable = [
  10. 'uid',
  11. 'from_uid',
  12. 'to_uid',
  13. 'seq',
  14. 'msg_random',
  15. 'msg_time_stamp',
  16. 'content',
  17. ];
  18. protected $casts = [
  19. 'content' => 'array',
  20. ];
  21. }