mirror of
https://gitee.com/ShopeX/OMS
synced 2026-05-02 05:05:40 +08:00
22 lines
366 B
PHP
22 lines
366 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
|
||
/**
|
||
* 供应商关联品牌
|
||
*/
|
||
class purchase_mdl_supplier_brand extends dbeav_model {
|
||
|
||
function saveSupplierBrand($datas){
|
||
|
||
if ($this->save($datas)) return true;
|
||
else return false;
|
||
|
||
}
|
||
|
||
}
|
||
?>
|