|
@@ -1,20 +1,3 @@
|
|
|
-/*
|
|
|
- * Copyright (c) 2018-2025, hnqz All rights reserved.
|
|
|
- *
|
|
|
- * Redistribution and use in source and binary forms, with or without
|
|
|
- * modification, are permitted provided that the following conditions are met:
|
|
|
- *
|
|
|
- * Redistributions of source code must retain the above copyright notice,
|
|
|
- * this list of conditions and the following disclaimer.
|
|
|
- * Redistributions in binary form must reproduce the above copyright
|
|
|
- * notice, this list of conditions and the following disclaimer in the
|
|
|
- * documentation and/or other materials provided with the distribution.
|
|
|
- * Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
- * contributors may be used to endorse or promote products derived from
|
|
|
- * this software without specific prior written permission.
|
|
|
- * Author: hnqz
|
|
|
- */
|
|
|
-
|
|
|
package com.qunzhixinxi.hnqz.admin.service;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
@@ -39,9 +22,11 @@ import java.util.Map;
|
|
|
*/
|
|
|
public interface WmScorePackageStatusService extends IService<WmScorePackageStatus> {
|
|
|
|
|
|
- R getPage(Page page, WmScorePackageStatus wmScorePackageStatus);
|
|
|
- R approvalStatus(WmScorePackageStatus wmScorePackageStatus);
|
|
|
- R updateZZ(WmScorePackageStatus wmScorePackageStatus);
|
|
|
+ R<?> getPage(Page page, WmScorePackageStatus wmScorePackageStatus);
|
|
|
+
|
|
|
+ R<?> approvalStatus(WmScorePackageStatus wmScorePackageStatus);
|
|
|
+
|
|
|
+ R<?> updateZZ(WmScorePackageStatus wmScorePackageStatus);
|
|
|
|
|
|
List<WmScorePackageStatus> getByPackageId(WmScorePackageStatus wmScorePackageStatus);
|
|
|
|
|
@@ -58,7 +43,7 @@ public interface WmScorePackageStatusService extends IService<WmScorePackageStat
|
|
|
/**
|
|
|
* 获取当前部门已接单人的列表
|
|
|
*
|
|
|
- * @param deptId 部门id
|
|
|
+ * @param deptId 部门id
|
|
|
* @param packageType1 积分包任务类型1
|
|
|
* @param packageType2 积分包任务类型2
|
|
|
* @return
|
|
@@ -67,8 +52,9 @@ public interface WmScorePackageStatusService extends IService<WmScorePackageStat
|
|
|
|
|
|
/**
|
|
|
* 批量审核
|
|
|
+ *
|
|
|
* @param statusBatch 批量审核
|
|
|
* @return 批量审核结果
|
|
|
*/
|
|
|
- Map<String,Integer> approvalStatusBatch(WmScorePackageStatusBatch statusBatch);
|
|
|
+ Map<String, Integer> approvalStatusBatch(WmScorePackageStatusBatch statusBatch);
|
|
|
}
|