| | |
| | | import com.nuvole.base.domain.SysUser; |
| | | import com.nuvole.common.domain.result.CommonResult; |
| | | import com.nuvole.common.domain.result.PageBean; |
| | | import com.nuvole.four.client.ShopServiceClient; |
| | | import com.nuvole.four.contants.Contants; |
| | | import com.nuvole.four.controller.BaseController; |
| | | import com.nuvole.four.domain.ActivityDistributeRecord; |
| | |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description 费率补贴活动管理 |
| | |
| | | private final ActivityFeeService activityFeeService; |
| | | private final SysOrgServiceImpl sysOrgService; |
| | | private final ActivityDistributeRecordServiceImpl activityDistributeRecordService; |
| | | private final ShopServiceClient shopServiceClient; |
| | | // private final ShopServiceClient shopServiceClient; |
| | | |
| | | |
| | | /** |
| | |
| | | SysUser user = SystemUtil.getLoginUser(Contants.LOGIN_TYPE_PC); |
| | | orgCode = user.getOrgCode(); |
| | | } |
| | | CommonResult<PageBean<Map>> mapResult = shopServiceClient.merchantActivityList(orgCode, channelId, activityId, startDate,endDate, pageNumber, pageSize); |
| | | return mapResult; |
| | | // CommonResult<PageBean<Map>> mapResult = shopServiceClient.merchantActivityList(orgCode, channelId, activityId, startDate,endDate, pageNumber, pageSize); |
| | | return new CommonResult<>(); |
| | | } |
| | | |
| | | /** |
| | |
| | | SysUser user = SystemUtil.getLoginUser(Contants.LOGIN_TYPE_PC); |
| | | orgCode = user.getOrgCode(); |
| | | } |
| | | CommonResult<Map> mapResult = shopServiceClient.merchantActivityCollect(orgCode, channelId, activityId, startDate,endDate); |
| | | return mapResult; |
| | | // CommonResult<Map> mapResult = shopServiceClient.merchantActivityCollect(orgCode, channelId, activityId, startDate,endDate); |
| | | return new CommonResult<>(); |
| | | } |
| | | |
| | | /** |