Commit c38951c3 by zhangchen

券分类Nodel增加

parent f639ed0c
......@@ -507,6 +507,19 @@ public class VoucherRuleController {
nameIdBean3.setName(VoucherTypeEnum.TOUR.getMsg());
nameIdBean3.setId(VoucherTypeEnum.TOUR.getValue());
result.add(nameIdBean3);
NameIdBean<Integer> nameIdBean4 = new NameIdBean<Integer>();
nameIdBean4.setName(VoucherTypeEnum.TOUR_VOUCHER.getMsg());
nameIdBean4.setId(VoucherTypeEnum.TOUR_VOUCHER.getValue());
result.add(nameIdBean4);
NameIdBean<Integer> nameIdBean5 = new NameIdBean<Integer>();
nameIdBean5.setName(VoucherTypeEnum.TRAIN_VOUCHER.getMsg());
nameIdBean5.setId(VoucherTypeEnum.TRAIN_VOUCHER.getValue());
result.add(nameIdBean5);
NameIdBean<Integer> nameIdBean6 = new NameIdBean<Integer>();
nameIdBean6.setName(VoucherTypeEnum.VIP_VOUCHER.getMsg());
nameIdBean6.setId(VoucherTypeEnum.VIP_VOUCHER.getValue());
result.add(nameIdBean6);
return result;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment