|
@@ -5,7 +5,6 @@ import com.fjhx.reportPrice.entity.ReportPriceBill;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springblade.core.tenant.annotation.TenantIgnore;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -60,8 +59,8 @@ public interface ReportPriceBillMapper extends BaseMapper<ReportPriceBill> {
|
|
|
* @return
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- Integer getDailySumReportListCount(@RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("createUser") String createUser);
|
|
|
+ Integer getDailySumReportListCount(@Param("tenantId") String tenantId,
|
|
|
+ @Param("createUser") String createUser);
|
|
|
|
|
|
/**
|
|
|
* 查询列表
|
|
@@ -71,8 +70,8 @@ public interface ReportPriceBillMapper extends BaseMapper<ReportPriceBill> {
|
|
|
* @return
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<ReportPriceBill> getDailySumReportList(@RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("createUser") String createUser);
|
|
|
+ List<ReportPriceBill> getDailySumReportList(@Param("tenantId") String tenantId,
|
|
|
+ @Param("createUser") String createUser);
|
|
|
|
|
|
/**
|
|
|
* 查询列表
|
|
@@ -91,7 +90,7 @@ public interface ReportPriceBillMapper extends BaseMapper<ReportPriceBill> {
|
|
|
* @return
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<ReportPriceBill> getByUserIds(@RequestParam("userIds") List<String> userIds, @RequestParam("year") String year);
|
|
|
+ List<ReportPriceBill> getByUserIds(@Param("userIds") List<String> userIds, @Param("year") String year);
|
|
|
|
|
|
/**
|
|
|
* 根据子编号前缀代码统计
|
|
@@ -106,12 +105,12 @@ public interface ReportPriceBillMapper extends BaseMapper<ReportPriceBill> {
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
Integer getCount(
|
|
|
- @RequestParam("prefixCode") int prefixCode,
|
|
|
- @RequestParam("countryId") String countryId,
|
|
|
- @RequestParam("customerId") String customerId,
|
|
|
- @RequestParam("productId") String productId,
|
|
|
- @RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("userId") String userId
|
|
|
+ @Param("prefixCode") int prefixCode,
|
|
|
+ @Param("countryId") String countryId,
|
|
|
+ @Param("customerId") String customerId,
|
|
|
+ @Param("productId") String productId,
|
|
|
+ @Param("tenantId") String tenantId,
|
|
|
+ @Param("userId") String userId
|
|
|
);
|
|
|
|
|
|
/**
|