|
|
@@ -824,13 +824,13 @@ public class PatentApiController extends BaseApiController {
|
|
|
|
|
|
// 专利纸件收发登记
|
|
|
private Pagination<PatentRecieveSendBo> getRecieveSendList(Integer pNo, Integer pSize) {
|
|
|
- return (Pagination<PatentRecieveSendBo>) patentRegistrationService.getRecieveSendList(pNo, pSize);
|
|
|
+ return patentRegistrationService.getRecieveSendList(pNo, pSize);
|
|
|
}
|
|
|
|
|
|
// 专利申请费用管理
|
|
|
private Pagination<PatentApplicationFeeBo> getApplicationFeeList(String[] patentApplicationDate,
|
|
|
String locationProvince, Integer pNo, Integer pSize) throws ParseException {
|
|
|
- return (Pagination<PatentApplicationFeeBo>) patentCostService.getApplicationFeeList(patentApplicationDate,
|
|
|
+ return patentCostService.getApplicationFeeList(patentApplicationDate,
|
|
|
locationProvince, pNo, pSize);
|
|
|
}
|
|
|
|
|
|
@@ -838,7 +838,7 @@ public class PatentApiController extends BaseApiController {
|
|
|
private Pagination<PatentNoticeOfCorrectionBo> getNoticeOfCorrectionList(Date authorizedDate, Integer serialNumber,
|
|
|
String patentNumber, String office, String locationProvince, String unitName, Integer patentCatagory,
|
|
|
String patentName, Integer patentState, String author, Integer pNo, Integer pSize) {
|
|
|
- return (Pagination<PatentNoticeOfCorrectionBo>) patentInfoService.getNoticeOfCorrectionList(authorizedDate,
|
|
|
+ return patentInfoService.getNoticeOfCorrectionList(authorizedDate,
|
|
|
serialNumber, patentNumber, office, locationProvince, unitName, patentCatagory, patentName, patentState,
|
|
|
author, pNo, pSize);
|
|
|
}
|
|
|
@@ -846,7 +846,7 @@ public class PatentApiController extends BaseApiController {
|
|
|
// 待缴费专利管理
|
|
|
private Pagination<PatentPendingBo> getManagePendingPaymentList(String locationProvince, Integer pNo,
|
|
|
Integer pSize) {
|
|
|
- return (Pagination<PatentPendingBo>) patentInfoService.getManagePendingPaymentList(locationProvince, pNo,
|
|
|
+ return patentInfoService.getManagePendingPaymentList(locationProvince, pNo,
|
|
|
pSize);
|
|
|
}
|
|
|
|
|
|
@@ -855,7 +855,7 @@ public class PatentApiController extends BaseApiController {
|
|
|
String locationProvince, String unitName, Integer patentCatagory, String patentName, Integer patentState,
|
|
|
String[] createTime, String[] patentApplicationDate, String author, Integer pNo, Integer pSize)
|
|
|
throws ParseException {
|
|
|
- return (Pagination<PatentCompositeBo>) patentInfoService.getManagePatentList(serialNumber, patentNumber, office,
|
|
|
+ return patentInfoService.getManagePatentList(serialNumber, patentNumber, office,
|
|
|
locationProvince, unitName, patentCatagory, patentName, patentState, createTime, patentApplicationDate,
|
|
|
author, pNo, pSize);
|
|
|
}
|
|
|
@@ -863,7 +863,7 @@ public class PatentApiController extends BaseApiController {
|
|
|
// 用户端申请专利列表
|
|
|
private Pagination<PatentInfo> getClientApplyList(Result res, String patentNumber, String patentName,
|
|
|
Integer patentCatagory, Integer patentState, Integer pNo, Integer pSize) {
|
|
|
- return (Pagination<PatentInfo>) patentInfoService.getClientApplyList(TokenManager.getUserId(), patentNumber,
|
|
|
+ return patentInfoService.getClientApplyList(TokenManager.getUserId(), patentNumber,
|
|
|
patentName, patentCatagory, patentState, pNo, pSize);
|
|
|
}
|
|
|
|