小程序储值卡

This commit is contained in:
齐天大圣 2023-12-01 16:47:56 +08:00
parent 02bff90102
commit eca6f8a9a7

View File

@ -66,6 +66,9 @@ public class CardValueController extends BaseController {
//构建查询条件
if (ObjectUtils.isNotEmpty(cardValue.getIsonline())){
queryWrapper.eq(CardValue::getIsonline,cardValue.getIsonline());
}
if (ObjectUtils.isNotEmpty(cardValue.getActiveStatus())){
queryWrapper.eq(CardValue::getActiveStatus,cardValue.getActiveStatus());
}
queryWrapper.eq(CardValue::getStoreId,TokenUtil.getNowAccountInfo().getStoreId());
queryWrapper.orderByDesc(CardValue::getCreateTime);