mkm 8567f2de4a fix(inventory_store): 修复库存盘点逻辑
- 引入 Raw 类以处理复杂的数据库查询
- 使用 Raw 实例解决 nums 和 enter_nums 直接比较的问题
2025-02-14 18:00:33 +08:00

22 lines
394 B
PHP

<?php
namespace app\common\model\inventory_warehouse;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 仓库盘存模型
* Class InventoryWarehouse
* @package app\common\model\inventory_warehouse
*/
class InventoryWarehouse extends BaseModel
{
use SoftDelete;
protected $name = 'inventory_warehouse';
protected $deleteTime = 'delete_time';
}