经纪人
This commit is contained in:
parent
98e0b53de8
commit
cf481d04d5
|
@ -10,6 +10,7 @@ import com.sqx.modules.bl.commission.fxy.service.FxyApplyService;
|
|||
import com.sqx.modules.bl.commission.fxy.service.FxyConfigService;
|
||||
|
||||
import com.sqx.modules.bl.commission.fxy.service.FxyDataService;
|
||||
import com.sqx.modules.bl.commission.jjr.entity.JjrData;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
@ -80,9 +81,11 @@ public class AppFxyController {
|
|||
@ApiOperation("我的邀请")
|
||||
public Result invitationDetail(@RequestAttribute Long userId, Integer page, Integer limit){
|
||||
FxyData fxyData = dataService.getByUserId(userId);
|
||||
fxyData.setPage(page);
|
||||
fxyData.setLimit(limit);
|
||||
return dataService.invitationDetailPage(fxyData);
|
||||
FxyData fd = new FxyData();
|
||||
fd.setPage(page);
|
||||
fd.setLimit(limit);
|
||||
fd.setInvitationCode(fxyData.getInvitationCode());
|
||||
return dataService.invitationDetailPage(fd);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue