## 会员顶点拨比统计包含顶点自己;
This commit is contained in:
parent
16e913e987
commit
8e53d51867
|
@ -540,7 +540,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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue