mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
16 lines
460 B
PHP
16 lines
460 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class ome_mdl_tbgift_product extends dbeav_model{
|
||
function getAllProduct($id){
|
||
return $this->db->select("SELECT * FROM sdb_ome_tbgift_product where goods_id = '".$id."'");
|
||
}
|
||
|
||
function getproduct($id){
|
||
return $this->db->select("SELECT * FROM sdb_ome_tbgift_product where goods_id = '".$id."'");
|
||
}
|
||
}
|
||
?>
|