Commit 8fd19117 by guojuxing

会员卡、服务号、小程序、门店依次排序

parent 5b9c40bc
......@@ -166,10 +166,10 @@ public class EnterpriseListDTO implements Serializable{
Object serviceCard = map.get("服务号");
Object weChat = map.get("小程序");
Object store = map.get("门店");
return memberCard == null ? "0" : memberCard.toString() + "-"
+ serviceCard == null ? "0" : serviceCard.toString() + "-"
+ weChat == null ? "0" : weChat.toString() + "-"
+ store == null ? "0" : store.toString();
return (memberCard == null ? "0" : memberCard.toString()) + "-"
+ (serviceCard == null ? "0" : serviceCard.toString()) + "-"
+ (weChat == null ? "0" : weChat.toString()) + "-"
+ (store == null ? "0" : store.toString());
}
}
......
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 to comment