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
0f4f722e
Commit
0f4f722e
authored
May 13, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增实体类
parent
68a0e950
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
666 additions
and
5 deletions
+666
-5
RB_Miniprogram_Page_Templ.cs
...Model/Entity/MarketingCenter/RB_Miniprogram_Page_Templ.cs
+107
-0
RB_Miniprogram_Page_Templ_Details.cs
...tity/MarketingCenter/RB_Miniprogram_Page_Templ_Details.cs
+52
-0
RB_Miniprogram_Template.cs
Mall.Model/Entity/MarketingCenter/RB_Miniprogram_Template.cs
+88
-0
RB_Miniprogram_Page_Templ_Details_Extend.cs
...rketingCenter/RB_Miniprogram_Page_Templ_Details_Extend.cs
+18
-0
RB_Miniprogram_Page_Templ_Extend.cs
...xtend/MarketingCenter/RB_Miniprogram_Page_Templ_Extend.cs
+18
-0
RB_Miniprogram_Template_Extend.cs
.../Extend/MarketingCenter/RB_Miniprogram_Template_Extend.cs
+39
-0
MiniprogramPageTemplModule.cs
Mall.Module.MarketingCenter/MiniprogramPageTemplModule.cs
+33
-0
MiniprogramTemplateModule.cs
Mall.Module.MarketingCenter/MiniprogramTemplateModule.cs
+111
-0
RB_Miniprogram_Page_TemplRepository.cs
...ry/MarketingCenter/RB_Miniprogram_Page_TemplRepository.cs
+17
-0
RB_Miniprogram_Page_Templ_DetailsRepository.cs
...tingCenter/RB_Miniprogram_Page_Templ_DetailsRepository.cs
+17
-0
RB_Miniprogram_TemplateRepository.cs
...tory/MarketingCenter/RB_Miniprogram_TemplateRepository.cs
+73
-0
TemplateController.cs
....WebApi/Controllers/MarketingCenter/TemplateController.cs
+93
-0
TenantController.cs
Mall.WebApi/Controllers/User/TenantController.cs
+0
-5
No files found.
Mall.Model/Entity/MarketingCenter/RB_Miniprogram_Page_Templ.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.AOP
;
using
Mall.Common.Enum.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Entity.MarketingCenter
{
/// <summary>
/// 小程序自定义页面实体
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Miniprogram_Page_Templ
{
/// <summary>
/// 主键
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 页面名称
/// </summary>
public
string
PageName
{
get
;
set
;
}
/// <summary>
/// 启用1,禁用0
/// </summary>
public
int
?
IsUse
{
get
;
set
;
}
/// <summary>
/// 是否显示导航条(0-不显示,1-显示)
/// </summary>
public
int
?
IsShowNav
{
get
;
set
;
}
/// <summary>
/// 是否为首页(0-否,1-是)
/// </summary>
public
int
?
IsHome
{
get
;
set
;
}
/// <summary>
/// 商户号Id
/// </summary>
public
int
?
TenantId
{
get
;
set
;
}
/// <summary>
/// 小程序Id
/// </summary>
public
int
?
MallBaseId
{
get
;
set
;
}
/// <summary>
/// 创建日期
/// </summary>
public
DateTime
?
CreateDate
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
?
CreateBy
{
get
;
set
;
}
/// <summary>
/// 状态
/// </summary>
public
int
?
Status
{
get
;
set
;
}
}
}
Mall.Model/Entity/MarketingCenter/RB_Miniprogram_Page_Templ_Details.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.AOP
;
using
Mall.Common.Enum.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Entity.MarketingCenter
{
/// <summary>
/// 小程序自定义页面导航实体
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Miniprogram_Page_Templ_Details
{
/// <summary>
/// 主键编号
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 主表编号
/// </summary>
public
int
?
PageTemplID
{
get
;
set
;
}
/// <summary>
/// 导航名称
/// </summary>
public
string
NavName
{
get
;
set
;
}
/// <summary>
/// 模板编号
/// </summary>
public
int
?
TemplateId
{
get
;
set
;
}
}
}
Mall.Model/Entity/MarketingCenter/RB_Miniprogram_Template.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.AOP
;
using
Mall.Common.Enum.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Entity.MarketingCenter
{
/// <summary>
/// 小程序模板实体表
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Miniprogram_Template
{
/// <summary>
/// 主键
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 商户号Id
/// </summary>
public
int
?
TenantId
{
get
;
set
;
}
/// <summary>
/// 小程序Id
/// </summary>
public
int
?
MallBaseId
{
get
;
set
;
}
/// <summary>
/// 模板名称
/// </summary>
public
string
TemplateName
{
get
;
set
;
}
/// <summary>
/// 模板数据[JSON]格式
/// </summary>
public
string
TemplateData
{
get
;
set
;
}
/// <summary>
/// 创建日期
/// </summary>
public
DateTime
?
CreateDate
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
?
CreateBy
{
get
;
set
;
}
/// <summary>
/// 状态
/// </summary>
public
int
?
Status
{
get
;
set
;
}
}
}
Mall.Model/Extend/MarketingCenter/RB_Miniprogram_Page_Templ_Details_Extend.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.AOP
;
using
Mall.Common.Enum.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Entity.MarketingCenter
{
/// <summary>
/// 小程序自定义页面导航扩展实体
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Miniprogram_Page_Templ_Details_Extend
:
RB_Miniprogram_Page_Templ_Details
{
}
}
\ No newline at end of file
Mall.Model/Extend/MarketingCenter/RB_Miniprogram_Page_Templ_Extend.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.AOP
;
using
Mall.Common.Enum.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Entity.MarketingCenter
{
/// <summary>
/// 小程序自定义页面扩展实体
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Miniprogram_Page_Templ_Extend
:
Model
.
Entity
.
MarketingCenter
.
RB_Miniprogram_Page_Templ
{
}
}
\ No newline at end of file
Mall.Model/Extend/MarketingCenter/RB_Miniprogram_Template_Extend.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.AOP
;
using
Mall.Model.Entity.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Extend.MarketingCenter
{
/// <summary>
/// 小程序模板扩展实体表
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Miniprogram_Template_Extend
:
Model
.
Entity
.
MarketingCenter
.
RB_Miniprogram_Template
{
/// <summary>
/// 创建时间字符串
/// </summary>
public
string
CreateDateStr
{
get
{
string
str
=
""
;
if
(
this
.
CreateDate
!=
null
)
{
str
=
Convert
.
ToDateTime
(
this
.
CreateDate
).
ToString
(
"yyyy-MM-dd HH:mm:ss"
);
}
return
str
;
}
}
/// <summary>
/// 前端组件
/// </summary>
public
List
<
object
>
ComponentDataList
{
get
;
set
;
}
}
}
Mall.Module.MarketingCenter/MiniprogramPageTemplModule.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.Plugin
;
using
Mall.Model.Entity.MarketingCenter
;
using
Mall.Model.Entity.User
;
using
Mall.Model.Extend.MarketingCenter
;
using
Mall.Model.Extend.User
;
using
Mall.Model.Query
;
using
Mall.Repository
;
using
Mall.Repository.MarketingCenter
;
using
MySqlX.XDevAPI.Relational
;
using
Org.BouncyCastle.Crypto.Tls
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Mall.Module.MarketingCenter
{
/// <summary>
/// 小程序自定义页面处理类
/// </summary>
public
class
MiniprogramPageTemplModule
{
/// <summary>
/// 小程序自定义页面导航仓储层对象
/// </summary>
private
readonly
RB_Miniprogram_Page_Templ_DetailsRepository
detailsRepository
=
new
RB_Miniprogram_Page_Templ_DetailsRepository
();
/// <summary>
/// 小程序自定义页面仓储层对象
/// </summary>
private
readonly
RB_Miniprogram_Page_TemplRepository
pageRepository
=
new
RB_Miniprogram_Page_TemplRepository
();
}
}
Mall.Module.MarketingCenter/MiniprogramTemplateModule.cs
0 → 100644
View file @
0f4f722e
using
Mall.Common.Plugin
;
using
Mall.Model.Entity.MarketingCenter
;
using
Mall.Model.Entity.User
;
using
Mall.Model.Extend.MarketingCenter
;
using
Mall.Model.Extend.User
;
using
Mall.Model.Query
;
using
Mall.Repository
;
using
Mall.Repository.MarketingCenter
;
using
MySqlX.XDevAPI.Relational
;
using
Org.BouncyCastle.Crypto.Tls
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Mall.Module.MarketingCenter
{
/// <summary>
/// 小程序模板处理类
/// </summary>
public
class
MiniprogramTemplateModule
{
/// <summary>
/// 小程序模板仓储层对象
/// </summary>
private
readonly
RB_Miniprogram_TemplateRepository
miniprogram_TemplateRepository
=
new
RB_Miniprogram_TemplateRepository
();
/// <summary>
/// 小程序模板分页列表
/// </summary>
/// <param name="pageIndex">页码</param>
/// <param name="pageSize">每页显示条数</param>
/// <param name="rowCount">总条数</param>
/// <param name="query">查询条件</param>
/// <returns></returns>
public
List
<
RB_Miniprogram_Template_Extend
>
GetMiniprogramTemplatePageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowCount
,
RB_Miniprogram_Template_Extend
query
)
{
return
miniprogram_TemplateRepository
.
GetMiniprogramTemplatePageListRepository
(
pageIndex
,
pageSize
,
out
rowCount
,
query
);
}
/// <summary>
/// 小程序模板列表
/// </summary>
/// <param name="query">查询条件</param>
/// <returns></returns>
public
List
<
RB_Miniprogram_Template_Extend
>
GetMiniprogramTemplateListModule
(
RB_Miniprogram_Template_Extend
query
)
{
return
miniprogram_TemplateRepository
.
GetMiniprogramTemplateListRepository
(
query
);
}
/// <summary>
/// 新增修改小程序模板
/// </summary>
/// <param name="extModel"></param>
/// <returns></returns>
public
bool
SetMiniprogramTemplateModule
(
RB_Miniprogram_Template_Extend
extModel
)
{
bool
flag
=
false
;
if
(
extModel
.
Id
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Miniprogram_Template_Extend
.
Id
),
extModel
.
Id
}
};
fileds
.
Add
(
nameof
(
RB_Miniprogram_Template_Extend
.
TemplateName
),
extModel
.
TemplateName
);
fileds
.
Add
(
nameof
(
RB_Miniprogram_Template_Extend
.
TemplateData
),
extModel
.
TemplateData
);
flag
=
miniprogram_TemplateRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Miniprogram_Template_Extend
.
Id
),
extModel
.
Id
));
}
else
{
var
newId
=
miniprogram_TemplateRepository
.
Insert
(
extModel
);
extModel
.
Id
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 获取小程序模板
/// </summary>
/// <param name="Id"></param>
/// <returns></returns>
public
RB_Miniprogram_Template_Extend
GetMiniprogramTemplateModule
(
object
Id
)
{
RB_Miniprogram_Template_Extend
extModel
=
miniprogram_TemplateRepository
.
GetEntity
<
RB_Miniprogram_Template_Extend
>(
Id
);
if
(
extModel
==
null
)
{
extModel
=
new
RB_Miniprogram_Template_Extend
();
}
return
extModel
;
}
/// <summary>
/// 删除小程序模板
/// </summary>
/// <param name="Id"></param>
/// <param name="Status"></param>
/// <returns></returns>
public
bool
RemoveMiniprogramTemplateModule
(
object
Id
,
int
Status
)
{
bool
flag
=
false
;
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Miniprogram_Template_Extend
.
Status
),
Status
}
};
flag
=
miniprogram_TemplateRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Miniprogram_Template_Extend
.
Id
),
Id
));
return
flag
;
}
}
}
Mall.Repository/MarketingCenter/RB_Miniprogram_Page_TemplRepository.cs
0 → 100644
View file @
0f4f722e
using
Mall.Model.Entity.MarketingCenter
;
using
Mall.Model.Extend.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Mall.Repository.MarketingCenter
{
/// <summary>
/// 小程序自定义页面仓储层
/// </summary>
public
class
RB_Miniprogram_Page_TemplRepository
:
RepositoryBase
<
RB_Miniprogram_Page_Templ
>
{
}
}
Mall.Repository/MarketingCenter/RB_Miniprogram_Page_Templ_DetailsRepository.cs
0 → 100644
View file @
0f4f722e
using
Mall.Model.Entity.MarketingCenter
;
using
Mall.Model.Extend.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Mall.Repository.MarketingCenter
{
/// <summary>
/// 小程序自定义页面导航仓储层
/// </summary>
public
class
RB_Miniprogram_Page_Templ_DetailsRepository
:
RepositoryBase
<
RB_Miniprogram_Page_Templ_Details
>
{
}
}
Mall.Repository/MarketingCenter/RB_Miniprogram_TemplateRepository.cs
0 → 100644
View file @
0f4f722e
using
Mall.Model.Entity.MarketingCenter
;
using
Mall.Model.Extend.MarketingCenter
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Mall.Repository.MarketingCenter
{
/// <summary>
/// 小程序模板仓储层
/// </summary>
public
class
RB_Miniprogram_TemplateRepository
:
RepositoryBase
<
RB_Miniprogram_Template
>
{
/// <summary>
/// 小程序模板分页列表
/// </summary>
/// <param name="pageIndex">页码</param>
/// <param name="pageSize">每页显示条数</param>
/// <param name="rowCount">总条数</param>
/// <param name="query">查询条件</param>
/// <returns></returns>
public
List
<
RB_Miniprogram_Template_Extend
>
GetMiniprogramTemplatePageListRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowCount
,
RB_Miniprogram_Template_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
builder
.
Append
(
$" SELECT * FROM RB_Miniprogram_Template WHERE Status=0 "
);
if
(
query
!=
null
)
{
if
(
query
.
TenantId
>
0
)
{
builder
.
Append
(
$" AND
{
nameof
(
RB_Miniprogram_Template_Extend
.
TenantId
)}
=
{
query
.
TenantId
}
"
);
}
if
(
query
.
TenantId
>
0
)
{
builder
.
Append
(
$" AND
{
nameof
(
RB_Miniprogram_Template_Extend
.
MallBaseId
)}
=
{
query
.
MallBaseId
}
"
);
}
if
(
query
.
TemplateName
!=
null
&&
!
string
.
IsNullOrWhiteSpace
(
query
.
TemplateName
))
{
builder
.
Append
(
$" AND
{
nameof
(
RB_Miniprogram_Template_Extend
.
TemplateName
)}
like '%
{
query
.
TemplateName
.
Trim
()}
%'"
);
}
}
return
GetPage
<
RB_Miniprogram_Template_Extend
>(
pageIndex
,
pageSize
,
out
rowCount
,
builder
.
ToString
()).
ToList
();
}
/// <summary>
/// 小程序模板列表
/// </summary>
/// <param name="query">查询条件</param>
/// <returns></returns>
public
List
<
RB_Miniprogram_Template_Extend
>
GetMiniprogramTemplateListRepository
(
RB_Miniprogram_Template_Extend
query
)
{
StringBuilder
builder
=
new
StringBuilder
();
builder
.
Append
(
$" SELECT * FROM RB_Miniprogram_Template WHERE Status=0 "
);
if
(
query
!=
null
)
{
if
(
query
.
TenantId
>
0
)
{
builder
.
Append
(
$" AND
{
nameof
(
RB_Miniprogram_Template_Extend
.
TenantId
)}
=
{
query
.
TenantId
}
"
);
}
if
(
query
.
TenantId
>
0
)
{
builder
.
Append
(
$" AND
{
nameof
(
RB_Miniprogram_Template_Extend
.
MallBaseId
)}
=
{
query
.
MallBaseId
}
"
);
}
if
(
query
.
TemplateName
!=
null
&&
!
string
.
IsNullOrWhiteSpace
(
query
.
TemplateName
))
{
builder
.
Append
(
$" AND
{
nameof
(
RB_Miniprogram_Template_Extend
.
TemplateName
)}
like '%
{
query
.
TemplateName
.
Trim
()}
%'"
);
}
}
return
Get
<
RB_Miniprogram_Template_Extend
>(
builder
.
ToString
()).
ToList
();
}
}
}
Mall.WebApi/Controllers/MarketingCenter/TemplateController.cs
0 → 100644
View file @
0f4f722e
using
System.Linq
;
using
Mall.Common.API
;
using
Microsoft.AspNetCore.Mvc
;
using
Mall.WebApi.Filter
;
using
Microsoft.AspNetCore.Cors
;
using
Mall.Module.MarketingCenter
;
using
Newtonsoft.Json
;
using
Mall.Model.Query
;
using
System
;
using
Mall.Common.Plugin
;
using
System.Collections.Generic
;
using
Mall.Model.Extend.MarketingCenter
;
using
Newtonsoft.Json.Linq
;
namespace
Mall.WebApi.Controllers.MarketingCenter
{
[
Route
(
"api/[controller]/[action]"
)]
[
ApiExceptionFilter
]
[
ApiController
]
[
EnableCors
(
"AllowCors"
)]
public
class
TemplateController
:
BaseController
{
private
readonly
Module
.
MarketingCenter
.
MiniprogramTemplateModule
templateModule
=
new
MiniprogramTemplateModule
();
#
region
模板管理
/// <summary>
/// 添加修改模板
/// </summary>
/// <returns></returns>
public
ApiResult
SetMiniTemplate
()
{
var
extModel
=
JsonConvert
.
DeserializeObject
<
RB_Miniprogram_Template_Extend
>(
RequestParm
.
msg
.
ToString
());
extModel
.
TenantId
=
RequestParm
.
TenantId
;
extModel
.
MallBaseId
=
RequestParm
.
MallBaseId
;
if
(
extModel
.
ComponentDataList
!=
null
&&
extModel
.
ComponentDataList
.
Count
>
0
)
{
extModel
.
TemplateData
=
JsonConvert
.
SerializeObject
(
extModel
.
ComponentDataList
);
}
Int32
.
TryParse
(
RequestParm
.
uid
,
out
int
Uid
);
extModel
.
CreateBy
=
Uid
;
extModel
.
CreateDate
=
DateTime
.
Now
;
extModel
.
Status
=
0
;
var
flag
=
templateModule
.
SetMiniprogramTemplateModule
(
extModel
);
return
flag
?
ApiResult
.
Success
(
data
:
extModel
.
Id
)
:
ApiResult
.
Failed
();
}
/// <summary>
/// 获取模板
/// </summary>
/// <returns></returns>
public
ApiResult
GetMiniTemplate
()
{
JObject
parms
=
JObject
.
Parse
(
RequestParm
.
msg
.
ToString
());
var
Id
=
parms
.
GetInt
(
"Id"
);
var
result
=
templateModule
.
GetMiniprogramTemplateModule
(
Id
);
return
ApiResult
.
Success
(
data
:
result
);
}
/// <summary>
/// 删除用户中心自定义菜单
/// </summary>
/// <returns></returns>
public
ApiResult
RemoveMiniTemplate
()
{
JObject
parms
=
JObject
.
Parse
(
RequestParm
.
msg
.
ToString
());
var
Id
=
parms
.
GetInt
(
"Id"
,
0
);
var
Status
=
parms
.
GetInt
(
"Status"
,
1
);
var
flag
=
templateModule
.
RemoveMiniprogramTemplateModule
(
Id
,
Status
);
return
flag
?
ApiResult
.
Success
()
:
ApiResult
.
Failed
();
}
/// <summary>
/// 获取分销商等级分页列表
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetMiniTemplatePageList
()
{
var
parms
=
RequestParm
;
ResultPageModel
pagelist
=
JsonConvert
.
DeserializeObject
<
ResultPageModel
>(
parms
.
msg
.
ToString
());
var
query
=
JsonConvert
.
DeserializeObject
<
RB_Miniprogram_Template_Extend
>(
parms
.
msg
.
ToString
());
query
.
TenantId
=
Convert
.
ToInt32
(
parms
.
uid
);
query
.
MallBaseId
=
parms
.
MallBaseId
;
var
list
=
templateModule
.
GetMiniprogramTemplatePageListModule
(
pagelist
.
pageIndex
,
pagelist
.
pageSize
,
out
long
count
,
query
);
pagelist
.
count
=
Convert
.
ToInt32
(
count
);
pagelist
.
pageData
=
list
;
return
ApiResult
.
Success
(
""
,
pagelist
);
}
#
endregion
}
}
\ No newline at end of file
Mall.WebApi/Controllers/User/TenantController.cs
View file @
0f4f722e
...
...
@@ -908,10 +908,5 @@ namespace Mall.WebApi.Controllers.User
return
ApiResult
.
Success
(
data
:
resultList
);
}
}
}
\ No newline at end of file
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