| 30 | } |
| 31 | |
| 32 | export class ShopInfo { |
| 33 | constructor(shopInfo) { |
| 34 | this.logo = shopInfo.shopLogo; |
| 35 | this.name = shopInfo.name; |
| 36 | this.fans = shopInfo.cFans; |
| 37 | this.sells = shopInfo.cSells; |
| 38 | this.score = shopInfo.score; |
| 39 | this.goodsCount = shopInfo.cGoods |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | export class ParamInfo { |
| 44 | constructor(info, rule) { |
nothing calls this directly
no outgoing calls
no test coverage detected