mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-15 18:25:33 +08:00
19 lines
381 B
PHP
19 lines
381 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class pos_mdl_inventory_snapshot_items extends dbeav_model
|
||
{
|
||
/**
|
||
* modifier_stock_date
|
||
* @param mixed $value value
|
||
* @return mixed 返回值
|
||
*/
|
||
public function modifier_stock_date($value)
|
||
{
|
||
return $value;
|
||
}
|
||
}
|