| | |
| | | public async Task<WebApiCallBack> GetList([FromBody] FMCartGetList entity) |
| | | { |
| | | var ids = CommonHelper.StringToIntArray(entity.ids); |
| | | |
| | | //获取数据 |
| | | var jm = await _cartServices.GetCartInfos(_user.ID, ids, entity.type, entity.areaId, entity.point, entity.couponCode, entity.receiptType, entity.userShipId, entity.objectId); |
| | | var jm = await _cartServices.GetCartInfos(_user.ID, ids, entity.type, entity.areaId, entity.point, entity.couponCode, entity.receiptType, entity.userShipId, entity.objectId, entity.goodsId); |
| | | |
| | | return jm; |
| | | } |