mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
23 lines
527 B
PHP
23 lines
527 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class wms_mdl_reship extends dbeav_model{
|
||
|
||
public function table_name($real = false){
|
||
if($real){
|
||
$table_name = 'sdb_ome_reship';
|
||
}else{
|
||
$table_name = 'reship';
|
||
}
|
||
return $table_name;
|
||
}
|
||
|
||
public function get_schema(){
|
||
return app::get('ome')->model('channel')->get_schema();
|
||
}
|
||
}
|
||
|
||
?>
|