mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
24 lines
712 B
PHP
24 lines
712 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class ome_mdl_tbgift_goods extends dbeav_model{
|
||
var $has_many = array(
|
||
'product' => 'tbgift_product:replace'
|
||
);
|
||
|
||
function getGiftById($id){
|
||
return $this->db->select("SELECT * FROM sdb_ome_tbgift_goods where goods_id = '".$id."'");
|
||
}
|
||
|
||
function checkGiftByBn($bn){
|
||
return $this->db->select("SELECT goods_id FROM sdb_ome_tbgift_goods where gift_bn = '".addslashes($bn)."'");
|
||
}
|
||
|
||
function getGiftByBn($bn){
|
||
return $this->db->selectrow("SELECT goods_id FROM sdb_ome_tbgift_goods where gift_bn = '".addslashes($bn)."'");
|
||
}
|
||
}
|
||
?>
|