mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
24 lines
543 B
PHP
24 lines
543 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class inventorydepth_mdl_goods extends dbeav_model{
|
||
|
||
public function table_name($real=false)
|
||
{
|
||
$table_name = 'goods';
|
||
if($real){
|
||
return kernel::database()->prefix.app::get('ome')->app_id.'_'.$table_name;
|
||
}else{
|
||
return $table_name;
|
||
}
|
||
}
|
||
|
||
public function get_schema()
|
||
{
|
||
return app::get('ome')->model('goods')->get_schema();
|
||
}
|
||
}
|
||
?>
|