wyyl/beike/Models/RmaHistory.php

22 lines
444 B
PHP

<?php
/**
* RmaHistory.php
*
* @copyright 2022 beikeshop.com - All Rights Reserved
* @link https://beikeshop.com
* @author TL <mengwb@guangda.work>
* @created 2022-08-03 15:22:18
* @modified 2022-08-03 15:22:18
*/
namespace Beike\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class RmaHistory extends Base
{
use HasFactory;
protected $fillable = ['rma_id', 'status', 'notify', 'comment'];
}