List<Map.Entry<Integer, String>> orderStatusList = new ArrayList<Map.Entry<Integer, String>>();
        orderStatusList.add(new AbstractMap.SimpleEntry(1 ,"已下单"));
        orderStatusList.add(new AbstractMap.SimpleEntry(2 ,"已分配客服"));
        orderStatusList.add(new AbstractMap.SimpleEntry(3 ,"待支付"));
        orderStatusList.add(new AbstractMap.SimpleEntry(4 ,"已支付"));
        orderStatusList.add(new AbstractMap.SimpleEntry(5 ,"待反馈立案信息"));
        orderStatusList.add(new AbstractMap.SimpleEntry(6 ,"已反馈立案信息"));
        orderStatusList.add(new AbstractMap.SimpleEntry(7 ,"待补差价"));
        orderStatusList.add(new AbstractMap.SimpleEntry(8 ,"待反馈受理信息"));
        orderStatusList.add(new AbstractMap.SimpleEntry(9 ,"已反馈受理信息"));
        orderStatusList.add(new AbstractMap.SimpleEntry(10 ,"已确认受理信息"));
        orderStatusList.add(new AbstractMap.SimpleEntry(11 ,"已结算"));
        orderStatusList.add(new AbstractMap.SimpleEntry(12 ,"已取消"));

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
  • 2021-10-17
  • 2021-11-05
  • 2021-07-15
  • 2022-03-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2021-08-11
  • 2022-12-23
  • 2021-10-18
  • 2021-09-11
相关资源
相似解决方案