Example #1
0
 /**
  * 添加单条
  * 
  * @param int $uid
  * @param int $mobile
  * @return array
  */
 public function addMobileVerify(PwUserMobileDm $dm)
 {
     if (($result = $dm->beforeAdd()) !== true) {
         return $result;
     }
     return $this->_getDao()->replace($dm->getData());
 }