Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
mall.oytour.com
Commits
a2d80ca9
Commit
a2d80ca9
authored
Apr 21, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
37e8ef1c
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
229 deletions
+10
-229
PublishB2BMsgEnum.cs
...Mall.CacheManager/DataStatistic/Enum/PublishB2BMsgEnum.cs
+0
-36
DataPublishB2BMsg.cs
...all.CacheManager/DataStatistic/Model/DataPublishB2BMsg.cs
+0
-24
DataTask.cs
Mall/Mall.CacheManager/DataStatistic/Model/DataTask.cs
+0
-24
UserReidsCache.cs
Mall/Mall.CacheManager/User/UserReidsCache.cs
+0
-5
UserCacheKeyConfig.cs
Mall/Mall.CacheManager/keyManager/UserCacheKeyConfig.cs
+0
-55
UserModuleCacheKeyConfig.cs
.../Mall.CacheManager/keyManager/UserModuleCacheKeyConfig.cs
+3
-85
Mall.Repository.dll
...l.Module.User/bin/Debug/netcoreapp3.0/Mall.Repository.dll
+0
-0
Mall.Repository.pdb
...l.Module.User/bin/Debug/netcoreapp3.0/Mall.Repository.pdb
+0
-0
RB_TenantRepository.cs
Mall/Mall.Repository/User/RB_TenantRepository.cs
+7
-0
No files found.
Mall/Mall.CacheManager/DataStatistic/Enum/PublishB2BMsgEnum.cs
deleted
100644 → 0
View file @
37e8ef1c
using
Mall.Common.Plugin
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Mall.CacheManager.DataStatistic.Enum
{
/// <summary>
/// 发布信息类型枚举
/// </summary>
public
enum
PublishB2BMsgEnum
{
/// <summary>
/// 城市登录信息
/// </summary>
[
EnumField
(
"城市登录信息"
)]
CityLogin
=
1
,
/// <summary>
/// 同行数量、激活总数、沉睡客户数量、app下载数量
/// </summary>
[
EnumField
(
"同行数量、激活总数、沉睡客户数量、app下载数量"
)]
ClientNum
=
2
,
/// <summary>
/// 今日/年度交易信息
/// </summary>
[
EnumField
(
"今日/年度交易信息、平台数据信息、返佣红包"
)]
TradeInfo
=
3
,
/// <summary>
/// 其他信息
/// </summary>
[
EnumField
(
"其他信息"
)]
OtherInfo
=
4
}
}
Mall/Mall.CacheManager/DataStatistic/Model/DataPublishB2BMsg.cs
deleted
100644 → 0
View file @
37e8ef1c
using
Mall.CacheManager.DataStatistic.Enum
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Mall.CacheManager.DataStatistic.Model
{
/// <summary>
/// 发布消息载体
/// </summary>
public
class
DataPublishB2BMsg
{
/// <summary>
/// 消息类型
/// </summary>
public
PublishB2BMsgEnum
type
{
get
;
set
;
}
/// <summary>
/// 消息内容
/// </summary>
public
object
data
{
get
;
set
;
}
}
}
Mall/Mall.CacheManager/DataStatistic/Model/DataTask.cs
deleted
100644 → 0
View file @
37e8ef1c
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Mall.CacheManager.DataStatistic.Model
{
public
class
DataTask
{
/// <summary>
/// 任务全路径
/// </summary>
public
string
FullName
{
get
;
set
;
}
/// <summary>
/// 任务执行方法
/// </summary>
public
string
Method
{
get
;
set
;
}
/// <summary>
/// 任务执行参数
/// </summary>
public
List
<
object
>
Parms
{
get
;
set
;
}
}
}
Mall/Mall.CacheManager/User/UserReidsCache.cs
View file @
a2d80ca9
...
@@ -27,11 +27,6 @@ namespace Mall.CacheManager.User
...
@@ -27,11 +27,6 @@ namespace Mall.CacheManager.User
return
ts
;
return
ts
;
}
}
/// <summary>
/// <summary>
/// 判断key是否存在
/// 判断key是否存在
/// </summary>
/// </summary>
...
...
Mall/Mall.CacheManager/keyManager/UserCacheKeyConfig.cs
deleted
100644 → 0
View file @
37e8ef1c
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Mall.CacheKey
{
/// <summary>
/// 公用模块缓存Key配置
/// </summary>
public
class
UserCacheKeyConfig
{
/// <summary>
/// User库集团列表缓存
/// </summary>
public
static
string
USER_GROUP_LIST
{
get
{
return
"USER_GROUP_LIST"
;
}
}
/// <summary>
/// User库分公司列表缓存
/// </summary>
public
static
string
USER_BRANCH_LIST
{
get
{
return
"USER_BRANCH_LIST"
;
}
}
/// <summary>
/// USER库员工列表缓存
/// </summary>
public
static
string
USER_EMPLOYEE
{
get
{
return
"USER_EMPLOYEE_"
;
}
}
/// <summary>
/// DMC库供应商列表缓存
/// </summary>
public
static
string
DMC_SUPPLIER
{
get
{
return
"DMC_SUPPLIER_"
;
}
}
/// <summary>
/// IP白名单缓存Key
/// </summary>
public
static
string
IP_Manager_Key
{
get
{
return
"IP_Manager_List"
;
}
}
}
}
Mall/Mall.CacheManager/keyManager/UserModuleCacheKeyConfig.cs
View file @
a2d80ca9
...
@@ -12,93 +12,11 @@ namespace Mall.CacheKey
...
@@ -12,93 +12,11 @@ namespace Mall.CacheKey
public
class
UserModuleCacheKeyConfig
public
class
UserModuleCacheKeyConfig
{
{
/// <summary>
/// <summary>
///
USER_Login_Info_123(用户ID
)
///
Mall_Login_Info_123(商户Id
)
/// </summary>
/// </summary>
public
static
string
USER
_Login_Info
public
static
string
Mall
_Login_Info
{
{
get
{
return
"USER_Login_Info_"
;
}
get
{
return
"Mall_Login_Info_"
;
}
}
/// <summary>
/// B2B_USER_Login_Info_123(用户ID)
/// </summary>
public
static
string
B2B_USER_Login_Info
{
get
{
return
"B2B_USER_Login_Info_"
;
}
}
/// <summary>
/// //USER_SysMenu_StrInfo_123
/// </summary>
public
static
string
USER_SysMenu_StrInfo
{
get
{
return
"USER_SysMenu_StrInfo_"
;
}
}
/// <summary>
/// User_Code
/// </summary>
public
static
string
User_Code
{
get
{
return
"User_Code_"
;
}
}
/// <summary>
/// User_Send_Code_List
/// </summary>
public
static
string
User_Send_Code_List
{
get
{
return
"User_Send_Code_List_"
;
}
}
/// <summary>
/// User_New_Share_Cloud_Message
/// </summary>
public
static
string
User_New_Share_Cloud_Message
{
get
{
return
"User_New_Share_Cloud_Message"
;
}
}
/// <summary>
/// 机票订单待付款信息
/// </summary>
public
static
string
Air_WaitOrderPay_Info
{
get
{
return
"Air_WaitOrderPay_Info"
;
}
}
/// <summary>
/// 机票订单正在付款信息
/// </summary>
public
static
string
Air_JustOrderPay_Info
{
get
{
return
"Air_JustOrderPay_Info"
;
}
}
/// <summary>
/// //USER_SysMenu_StrInfo_123
/// </summary>
public
static
string
Access_Token
{
get
{
return
"Access_Token"
;
}
}
public
static
string
MiniProgramFormId
{
get
{
return
"MiniProgram_FormId_"
;
}
}
public
static
string
KKDayAPIKey
{
get
{
return
"KKDayAPIKey"
;
}
}
public
static
string
CounponOrder
{
get
{
return
"CounponOrder_"
;
}
}
/// <summary>
/// 公司部门员工组织架构Key
/// </summary>
public
static
string
CompanyDepartMentEmployeeForChar
{
get
{
return
"CompanyDepartMentEmployeeForChar"
;
}
}
}
}
}
}
}
Mall/Mall.Module.User/bin/Debug/netcoreapp3.0/Mall.Repository.dll
View file @
a2d80ca9
No preview for this file type
Mall/Mall.Module.User/bin/Debug/netcoreapp3.0/Mall.Repository.pdb
View file @
a2d80ca9
No preview for this file type
Mall/Mall.Repository/User/RB_TenantRepository.cs
View file @
a2d80ca9
...
@@ -21,6 +21,13 @@ namespace Mall.Repository.User
...
@@ -21,6 +21,13 @@ namespace Mall.Repository.User
{
{
StringBuilder
builder
=
new
StringBuilder
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
Append
(
" SELECT * FROM RB_Tenant WHERE 1=1 "
);
builder
.
Append
(
" SELECT * FROM RB_Tenant WHERE 1=1 "
);
if
(
query
!=
null
)
{
if
(
query
.
Account
!=
null
&&
!
string
.
IsNullOrEmpty
(
query
.
Account
.
Trim
()))
{
builder
.
AppendFormat
(
" AND Account='{0}' "
,
query
.
Account
.
Trim
());
}
}
return
Get
<
RB_Tenant_Extend
>(
builder
.
ToString
()).
ToList
();
return
Get
<
RB_Tenant_Extend
>(
builder
.
ToString
()).
ToList
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment