@@ -74,6 +74,7 @@ public class PtCardtypeServiceImpl implements IPtCardtypeService {
@Override
public List<PtCardtypeVo> queryList(PtCardtypeBo bo) {
LambdaQueryWrapper<PtCardtype> lqw = buildQueryWrapper(bo);
+ lqw.orderByAsc(PtCardtype::getCode);
return baseMapper.selectVoList(lqw);
}
@@ -165,7 +165,7 @@ public class XfTermParamBo extends BaseEntity {
/**
* 卡上最大金额
*/
- @NotBlank(message = "卡上最大金额不能为空")
+ @NotNull(message = "卡上最大金额不能为空")
private Long maxCardMoney;