31 lines
491 B
PHP
31 lines
491 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SalesValueLog extends Model
|
|
{
|
|
public const TYPE_INDIVIDUAL = 1;
|
|
public const TYPE_TEAM = 2;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $attributes = [
|
|
'type' => self::TYPE_INDIVIDUAL,
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'user_id',
|
|
'order_id',
|
|
'order_user_id',
|
|
'type',
|
|
'change_sales_value',
|
|
'remarks',
|
|
];
|
|
}
|