SendGoodLog.php 296 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SendGoodLog extends Model
  5. {
  6. protected $fillable=[
  7. 'op_name', 'op_phone', 'op_id', 'accept_name', 'accept_phone', 'accept_id', 'type', 'select_id','note','op_id'
  8. ];
  9. protected $table='sendgood_log';
  10. }