LotteryUserExpress.class.php 664 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace Cas\Dao;
  3. use KIF\Dao\DBAgileDev;
  4. use KIF\Core\Request;
  5. /**
  6. *
  7. * 用户收货地址信息
  8. *
  9. * @author lihuanchun@qq.com
  10. *
  11. */
  12. class LotteryUserExpress extends DBAgileDev {
  13. protected $tableName = 'lottery_user_express';
  14. /**
  15. * 数据库里的真实字段
  16. * @var array
  17. */
  18. protected $other_field = array(
  19. 'uid',
  20. 'phone',
  21. 'address',
  22. 'user_name',
  23. 'sex',//1为未知,2为男性 3为女性
  24. );
  25. /**
  26. * 获取用户收货信息
  27. */
  28. public function getUserExpress($uid){
  29. $ids = $this->findIdsBy(array('uid' => $uid));
  30. if(empty($ids)){
  31. return false;
  32. }
  33. $id = array_pop($ids);
  34. return $this->get($id);
  35. }
  36. }