12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- use KIF\Core\Request;
- /**
- *
- * 用户收货地址信息
- *
- * @author lihuanchun@qq.com
- *
- */
- class LotteryUserExpress extends DBAgileDev {
- protected $tableName = 'lottery_user_express';
-
- /**
- * 数据库里的真实字段
- * @var array
- */
- protected $other_field = array(
- 'uid',
- 'phone',
- 'address',
- 'user_name',
- 'sex',//1为未知,2为男性 3为女性
- );
-
- /**
- * 获取用户收货信息
- */
- public function getUserExpress($uid){
- $ids = $this->findIdsBy(array('uid' => $uid));
- if(empty($ids)){
- return false;
- }
- $id = array_pop($ids);
- return $this->get($id);
- }
-
-
- }
|