Files
wh-api/app/Model/Purchase.php
ykxiao 0b2299c427
Some checks failed
Build Docker / build (push) Has been cancelled
协程版仓库后端项目
2025-07-08 14:59:47 +08:00

43 lines
885 B
PHP

<?php
/**
* Author: ykxiao
* Date: 2025/6/5
* Time: 下午4:42
* Description:
*
* (c) ykxiao <yk_9001@hotmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
declare(strict_types=1);
namespace App\Model;
class Purchase extends Model
{
protected ?string $table = 'purchase';
protected array $fillable = [
'purchase_sn',
'warehouse_ids',
'contract_sn',
'purchase_time',
'customer_type',
'container_type',
'container_count',
'original_count',
'original_cube',
'receiving_container',
'receiving_count',
'receiving_cube',
'kz_company_id',
'kz_company_name',
'sh_company_id',
'sh_company_name',
'remark',
'is_from_erp',
'erp_return_id',
];
}