|
@@ -309,17 +309,17 @@ public interface ContractMapper extends BladeMapper<Contract> {
|
|
|
* 查询总条数
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<Contract> getDailyContract(@RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("dataType") Integer dataType,
|
|
|
- @RequestParam("createUser") String createUser);
|
|
|
+ List<Contract> getDailyContract(@Param("tenantId") String tenantId,
|
|
|
+ @Param("dataType") Integer dataType,
|
|
|
+ @Param("createUser") String createUser);
|
|
|
|
|
|
/**
|
|
|
* 查询总条数
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- Integer getDailyContractCount(@RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("dataType") Integer dataType,
|
|
|
- @RequestParam("createUser") String createUser);
|
|
|
+ Integer getDailyContractCount(@Param("tenantId") String tenantId,
|
|
|
+ @Param("dataType") Integer dataType,
|
|
|
+ @Param("createUser") String createUser);
|
|
|
|
|
|
/**
|
|
|
* 查询总条数
|
|
@@ -332,15 +332,15 @@ public interface ContractMapper extends BladeMapper<Contract> {
|
|
|
* 总览-订单跟踪-统计总额
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<Contract> getOrderTailAfterSum(@RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("userId") String userId);
|
|
|
+ List<Contract> getOrderTailAfterSum(@Param("tenantId") String tenantId,
|
|
|
+ @Param("userId") String userId);
|
|
|
|
|
|
/**
|
|
|
* 总览-订单跟踪-统计总额
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<Contract> getOrderTailAfterSumStaus(@RequestParam("tenantId") String tenantId,
|
|
|
- @RequestParam("userId") String userId);
|
|
|
+ List<Contract> getOrderTailAfterSumStaus(@Param("tenantId") String tenantId,
|
|
|
+ @Param("userId") String userId);
|
|
|
|
|
|
/**
|
|
|
* 根据用户ID查询
|
|
@@ -351,7 +351,7 @@ public interface ContractMapper extends BladeMapper<Contract> {
|
|
|
* @return
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<Contract> getByUserIds(@RequestParam("userIds") List<String> userIds, @RequestParam("year") String year, @RequestParam("dataType") int dataType);
|
|
|
+ List<Contract> getByUserIds(@Param("userIds") List<String> userIds, @Param("year") String year, @Param("dataType") int dataType);
|
|
|
|
|
|
/**
|
|
|
* 根据用户ID查询
|
|
@@ -362,7 +362,7 @@ public interface ContractMapper extends BladeMapper<Contract> {
|
|
|
* @return
|
|
|
*/
|
|
|
@TenantIgnore
|
|
|
- List<Contract> getByUserIdsJoin(@RequestParam("userIds") List<String> userIds, @RequestParam("year") String year, @RequestParam("dataType") int dataType);
|
|
|
+ List<Contract> getByUserIdsJoin(@Param("userIds") List<String> userIds, @Param("year") String year, @Param("dataType") int dataType);
|
|
|
|
|
|
/**
|
|
|
* 根据子编号前缀代码统计
|
|
@@ -378,13 +378,13 @@ public interface ContractMapper extends BladeMapper<Contract> {
|
|
|
*/
|
|
|
@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,
|
|
|
- @RequestParam("dataType") int dataType
|
|
|
+ @Param("prefixCode") int prefixCode,
|
|
|
+ @Param("countryId") String countryId,
|
|
|
+ @Param("customerId") String customerId,
|
|
|
+ @Param("productId") String productId,
|
|
|
+ @Param("tenantId") String tenantId,
|
|
|
+ @Param("userId") String userId,
|
|
|
+ @Param("dataType") int dataType
|
|
|
);
|
|
|
|
|
|
/**
|