game2006api/webapp/models/BoxOpenedEvent.php
aozhiwei 1baa833f20 1
2022-04-22 16:06:12 +08:00

23 lines
378 B
PHP

<?php
namespace models;
use mt;
use phpcommon\SqlHelper;
class BoxOpenedEvent extends BaseModel {
public static function find($boxId)
{
$row = SqlHelper::ormSelectOne(
myself()->_getMarketMysql(),
't_boxopened_event',
array(
'box_token_id' => $boxId,
)
);
return $row;
}
}