mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
14 lines
218 B
PHP
14 lines
218 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class BusinessOrder extends Model
|
|
{
|
|
/**
|
|
* 不可批量赋值的属性。为空则所有熟悉都可以批量赋值
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $guarded = [];
|
|
}
|