1
This commit is contained in:
parent
c7e9f9f504
commit
a9ed8a84cf
@ -30,6 +30,19 @@ class OutAppPlanetController extends BaseController {
|
|||||||
myself()->_rspErr(1, 'deciamls error');
|
myself()->_rspErr(1, 'deciamls error');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
$period = 1;
|
||||||
|
$data = $this->load($period);
|
||||||
|
{
|
||||||
|
$rows = myself()->_getMarketMysql()->execQuery
|
||||||
|
(
|
||||||
|
'SELECT * FROM t_nft WHERE token_type=:token_type AND creator_address = owner_address AND token_id >= :begin_token_id AND token_id <= :end_token_id;',
|
||||||
|
array(
|
||||||
|
':token_type' => Nft::PLANET_TYPE,
|
||||||
|
':begin_token_id' => 0,
|
||||||
|
':end_token_id' => 0
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$ids = array(
|
$ids = array(
|
||||||
'280002'
|
'280002'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user