colly_wyx
2018-06-14 bef2c06923d3ba6727654f734bb93d5a09855dc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
 
class Model_SmsCode extends Model_Base{
 
    public $table = 'sms_code';
 
    /**
     * 获取某场景下最后一条短信
     * @param  [type] $phone [description]
     * @param  [type] $scene [description]
     * @return [type]        [description]
     */
    public function getPhoneLastSms($query = array()){
        return $this->getList($query, array(), array('_id' => -1), 1);
    }
 
 
 
}