12345678910111213 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class SendGoodLog extends Model
- {
- protected $fillable=[
- 'op_name', 'op_phone', 'op_id', 'accept_name', 'accept_phone', 'accept_id', 'type', 'select_id','note','op_id'
- ];
- protected $table='sendgood_log';
- }
|