Browse Source

20260114page业绩归属

milestone-20260113-现金管理0109
sunjiabei 2 days ago
parent
commit
d36c02ff31
  1. 3
      src/main/java/com/example/demo/controller/cash/CashCollectionController.java
  2. 16
      src/main/java/com/example/demo/domain/DTO/PerformanceDTO.java
  3. 3
      src/main/java/com/example/demo/domain/vo/coin/Page.java

3
src/main/java/com/example/demo/controller/cash/CashCollectionController.java

@ -2,6 +2,7 @@ package com.example.demo.controller.cash;
import com.example.demo.Util.JWTUtil; import com.example.demo.Util.JWTUtil;
import com.example.demo.Util.LanguageTranslationUtil; import com.example.demo.Util.LanguageTranslationUtil;
import com.example.demo.domain.DTO.PerformanceDTO;
import com.example.demo.domain.entity.Admin; import com.example.demo.domain.entity.Admin;
import com.example.demo.domain.entity.CashRecord; import com.example.demo.domain.entity.CashRecord;
import com.example.demo.domain.entity.RechargeActivity; import com.example.demo.domain.entity.RechargeActivity;
@ -274,7 +275,7 @@ public class CashCollectionController {
//根据id查询收款订单 //根据id查询收款订单
@PostMapping("/performanceSelect") @PostMapping("/performanceSelect")
public Result performanceSelect(@RequestBody CashCollection cashCollection) {
public Result performanceSelect(@RequestBody Page page) {
try { try {
CashCollection result = cashCollectionService.selectById(cashCollection); CashCollection result = cashCollectionService.selectById(cashCollection);

16
src/main/java/com/example/demo/domain/DTO/PerformanceDTO.java

@ -0,0 +1,16 @@
package com.example.demo.domain.DTO;
import lombok.Data;
/**
* @program: gold-java
* @ClassName PerformanceDTO
* @description:
* @author: Double
* @create: 202601-14 17:19
* @Version 1.0
**/
@Data
public class PerformanceDTO {
}

3
src/main/java/com/example/demo/domain/vo/coin/Page.java

@ -1,6 +1,7 @@
package com.example.demo.domain.vo.coin; package com.example.demo.domain.vo.coin;
import com.example.demo.domain.DTO.BeanConsumeCartDTO; import com.example.demo.domain.DTO.BeanConsumeCartDTO;
import com.example.demo.domain.DTO.PerformanceDTO;
import com.example.demo.domain.entity.User; import com.example.demo.domain.entity.User;
import com.example.demo.domain.vo.bean.*; import com.example.demo.domain.vo.bean.*;
import com.example.demo.domain.vo.cash.CashCollection; import com.example.demo.domain.vo.cash.CashCollection;
@ -50,6 +51,6 @@ public class Page {
private CashRecordDone cashRecordDone; private CashRecordDone cashRecordDone;
private RechargeActivity rechargeActivity; //充值活动 private RechargeActivity rechargeActivity; //充值活动
private CashRecordDTO cashRecordDTO; private CashRecordDTO cashRecordDTO;
private PerformanceDTO performanceDTO;//业绩归属
} }
Loading…
Cancel
Save