用户分账余额记录接口

This commit is contained in:
张松
2025-10-28 16:39:53 +08:00
parent 5f78e3e0c2
commit c199711e4d
6 changed files with 83 additions and 9 deletions

View File

@@ -15,4 +15,6 @@ import java.util.Map;
public interface MkDistributionFlowService extends IService<MkDistributionFlow> {
Map<String, Object> pageInfo(Long shopId, LocalDateTime startTime, LocalDateTime endTime, String key, String status, Long id);
Map<String, Object> distributionFlow(long loginIdAsLong, String startTime, String endTime, Long shopId, String status);
}

View File

@@ -18,4 +18,5 @@ public class MkDistributionFlowVO extends MkDistributionFlow implements Serializ
private String orderNo;
private String phone;
private String sourcePhone;
private String shopName;
}