mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 10:25:35 +08:00
18 lines
436 B
PHP
18 lines
436 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class base_mdl_recycle extends base_db_model{
|
||
|
||
function save(&$data,$mustUpdate = null){
|
||
$return = parent::save($data,$mustUpdate);
|
||
}
|
||
function get_item_type(){
|
||
$rows = $this->db->select('select distinct(item_type) from '.$this->table_name(1).' ');
|
||
return $rows;
|
||
}
|
||
}
|