CommentModel.php 580 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. /**
  4. * App\Models\CommentModel
  5. *
  6. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CommentModel newModelQuery()
  7. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CommentModel newQuery()
  8. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CommentModel query()
  9. * @mixin \Eloquent
  10. */
  11. class CommentModel extends Model
  12. {
  13. protected $table = 'kdgx_charge_partner_comment';
  14. public $dateFormat = 'U';
  15. public $fillable = ['id', 'created_at', 'updated_at', 'partner_id', 'uid', 'content'];
  16. }