## 会员顶点拨比统计包含顶点自己;

This commit is contained in:
cabbage 2025-05-26 09:46:12 +08:00
parent 6e2b873780
commit 922fa9f089
2 changed files with 4 additions and 8 deletions

View File

@ -602,7 +602,7 @@
SELECT pk_member
FROM ${settleTableName}
WHERE category = 0
start with pk_place_parent = #{pkVertex}
start with pk_member = #{pkVertex}
connect by pk_place_parent = prior pk_member
) cm
INNER JOIN SA_ORDER so on so.pk_member = cm.pk_member

View File

@ -5,11 +5,7 @@ import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @Description: 订单来源枚举
* @Author: sui q
* @Time: 2022/10/28 11:18
* @Classname: EOrderSource
* @PackageName: com.hzs.common.core.enums
* 订单来源枚举
*/
@AllArgsConstructor
@Getter
@ -44,9 +40,9 @@ public enum EOrderSource {
*/
private final String key;
public static EOrderSource getEOrderSource(int value){
public static EOrderSource getEOrderSource(int value) {
for (EOrderSource orderSource : EOrderSource.values()) {
if (orderSource.value == value){
if (orderSource.value == value) {
return orderSource;
}
}