48 lines
518 B
PHP
48 lines
518 B
PHP
<?php
|
|
namespace app\common\models\weightValue;
|
|
|
|
|
|
use app\common\models\BaseModel;
|
|
|
|
class WeightValueLog extends BaseModel{
|
|
|
|
public $timestamps = false;
|
|
public $table = 'yz_weight_value_log';
|
|
protected $fillable = [
|
|
'uniacid',
|
|
'member_id',
|
|
'type',
|
|
'goods_id',
|
|
'order_id',
|
|
'order_goods_id',
|
|
'change_type',
|
|
'change_quantity',
|
|
'change_front',
|
|
'change_after',
|
|
'remark',
|
|
'created_at',
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|