| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/4/24
- * Time: 下午4:36
- */
- namespace app\backend\modules\member\models;
- use app\common\models\BaseModel;
- class MemberUnique extends BaseModel
- {
- static protected $needLog = true;
- public $table = 'yz_member_unique';
- /**
- * 删除会员信息
- *
- * @param $id
- */
- public static function deleteMemberInfoById($id)
- {
- return self::uniacid()
- ->where('member_id', $id)
- ->delete();
- }
- public static function getMemberInfoById($unionid)
- {
- return self::uniacid()
- ->where('unionid', $unionid);
- }
- }
|