1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.yeshi.fanli.util.activity;
|
| import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief;
| import com.yeshi.fanli.util.taobao.TaoBaoUtil;
|
| public class ActivityUtil {
|
| public static String getGoodsShowPrice(TaoBaoGoodsBrief tb) {
| if (tb != null)
| return "券后价:¥" + TaoBaoUtil.getCouponPrice(tb);
| else
| return "";
| }
|
| }
|
|