mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
23 lines
516 B
PHP
23 lines
516 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class taoexlib_mdl_sms_rule extends dbeav_model
|
||
{
|
||
|
||
|
||
/**
|
||
* 根据规则id获取绑定关系信息
|
||
*
|
||
* @param $rule_id
|
||
* @return void
|
||
* @author
|
||
**/
|
||
public function getBindByRuleId($rule_id)
|
||
{
|
||
$res = app::get('taoexlib')->model('sms_bind')->select()->columns()->where('tid=?',$rule_id)->instance()->fetch_row();
|
||
return $res;
|
||
}
|
||
} |