...
|
...
|
@@ -269,10 +269,10 @@ module.exports = class extends global.yoho.BaseModel { |
|
|
getCodeRecent(actPrizeId, actId) {
|
|
|
actId = parseInt(actId, 10) || 0;
|
|
|
|
|
|
let where = '';
|
|
|
let where = ' and user_name <> \'\' and user_thumb <> \'\'';
|
|
|
|
|
|
if (actPrizeId) {
|
|
|
where = ' and act_prize_id = :actPrizeId';
|
|
|
where += ' and act_prize_id = :actPrizeId';
|
|
|
}
|
|
|
|
|
|
return mysqlCli.query(`select uid, user_name, user_thumb, create_time
|
...
|
...
|
|