mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 21:32:07 +08:00
system微服务dal.dataobject、dal.redis单元测试完善
This commit is contained in:
+2
@@ -7,6 +7,8 @@ package com.cf.imes.module.system.constants.permission;
|
||||
* @since 2024/6/22 11:44
|
||||
*/
|
||||
public final class InternalRoleConstants {
|
||||
private InternalRoleConstants() {
|
||||
}
|
||||
|
||||
/**
|
||||
* 组织管理员角色id
|
||||
|
||||
+6
@@ -1,6 +1,9 @@
|
||||
package com.cf.imes.module.system.dal.dataobject.funds.statistics;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
@@ -10,6 +13,9 @@ import java.math.BigDecimal;
|
||||
* @since 2025/9/30 16:10
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class FundsTradeTypeGroupStatisticsDO implements Comparable<FundsTradeTypeGroupStatisticsDO> {
|
||||
|
||||
/**
|
||||
|
||||
+6
@@ -1,6 +1,9 @@
|
||||
package com.cf.imes.module.system.dal.dataobject.user;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
@@ -8,6 +11,9 @@ import org.jetbrains.annotations.NotNull;
|
||||
* @since 2025/9/30 15:32
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class UserStatusGroupStatisticsDO implements Comparable<UserStatusGroupStatisticsDO> {
|
||||
/**
|
||||
* 用户数量
|
||||
|
||||
+2
@@ -8,6 +8,8 @@ import com.cf.imes.module.system.dal.dataobject.oauth2.OAuth2AccessTokenDO;
|
||||
* @author 晨丰科技
|
||||
*/
|
||||
public class RedisKeyConstants {
|
||||
private RedisKeyConstants() {
|
||||
}
|
||||
|
||||
/**
|
||||
* 指定部门的所有子部门编号数组的缓存
|
||||
|
||||
Reference in New Issue
Block a user