Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
WeiPanAPI
Overview
Overview
Details
Activity
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
Discuz
WeiPanAPI
Commits
1efa49c7
Commit
1efa49c7
authored
Mar 01, 2021
by
xiongyuwen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
e102ab02
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
90 additions
and
5 deletions
+90
-5
Constants.cs
src/Bailun.Discuz.Application/Util/Constants.cs
+0
-3
GetFileListResponse.cs
...Application/WeiPan/Dto/ResponseDto/GetFileListResponse.cs
+1
-1
GetWeChatUserInfoResponse.cs
...ation/WeiPan/Dto/ResponseDto/GetWeChatUserInfoResponse.cs
+42
-0
GetWechatDepartmentResponse.cs
...ion/WeiPan/Dto/ResponseDto/GetWechatDepartmentResponse.cs
+46
-0
WeiPanService.cs
src/Bailun.Discuz.Application/WeiPan/WeiPanService.cs
+0
-0
WeiPanFileList.cs
src/Bailun.Discuz.Domain/WeiPan/WeiPanFileList.cs
+1
-1
No files found.
src/Bailun.Discuz.Application/Util/Constants.cs
View file @
1efa49c7
...
@@ -10,8 +10,5 @@ namespace Bailun.Discuz.Application.Util
...
@@ -10,8 +10,5 @@ namespace Bailun.Discuz.Application.Util
public
const
string
File_List_Tree
=
"FileListTree"
;
public
const
string
File_List_Tree
=
"FileListTree"
;
public
const
string
ForuK_First_File_List
=
"FirstFileList"
;
public
const
string
ForuK_File_List_Tree
=
"FileListTree"
;
}
}
}
}
src/Bailun.Discuz.Application/WeiPan/Dto/ResponseDto/GetFileListResponse.cs
View file @
1efa49c7
...
@@ -6,7 +6,7 @@ namespace Bailun.Discuz.Application.WeiPan.Dto.ResponseDto
...
@@ -6,7 +6,7 @@ namespace Bailun.Discuz.Application.WeiPan.Dto.ResponseDto
{
{
public
class
ItemItem
public
class
ItemItem
{
{
public
string
firstFileName
{
get
;
set
;
}
public
string
firstfileid
{
get
;
set
;
}
public
string
firstfileid
{
get
;
set
;
}
/// <summary>
/// <summary>
///
///
...
...
src/Bailun.Discuz.Application/WeiPan/Dto/ResponseDto/GetWeChatUserInfoResponse.cs
0 → 100644
View file @
1efa49c7
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Bailun.Discuz.Application.WeiPan.Dto.ResponseDto
{
public
class
UserlistItem
{
/// <summary>
///
/// </summary>
public
string
userid
{
get
;
set
;
}
/// <summary>
/// 张三
/// </summary>
public
string
name
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
List
<
int
>
department
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
open_userid
{
get
;
set
;
}
}
public
class
GetWeChatUserInfoResponse
{
/// <summary>
///
/// </summary>
public
int
errcode
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
errmsg
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
List
<
UserlistItem
>
userlist
{
get
;
set
;
}
}
}
src/Bailun.Discuz.Application/WeiPan/Dto/ResponseDto/GetWechatDepartmentResponse.cs
0 → 100644
View file @
1efa49c7
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Bailun.Discuz.Application.WeiPan.Dto.ResponseDto
{
public
class
DepartmentItem
{
/// <summary>
///
/// </summary>
public
int
id
{
get
;
set
;
}
/// <summary>
/// 部门名称:如 广州研发中心
/// </summary>
public
string
name
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
name_en
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
int
parentid
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
int
order
{
get
;
set
;
}
}
public
class
GetWechatDepartmentResponse
{
/// <summary>
///
/// </summary>
public
int
errcode
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
string
errmsg
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
List
<
DepartmentItem
>
department
{
get
;
set
;
}
}
}
src/Bailun.Discuz.Application/WeiPan/WeiPanService.cs
View file @
1efa49c7
This diff is collapsed.
Click to expand it.
src/Bailun.Discuz.Domain/WeiPan/WeiPanFileList.cs
View file @
1efa49c7
...
@@ -24,6 +24,6 @@ namespace Bailun.Discuz.Domain.WeiPan
...
@@ -24,6 +24,6 @@ namespace Bailun.Discuz.Domain.WeiPan
[
Column
(
"first_file_id"
)]
public
string
FirstFileId
{
get
;
set
;
}
[
Column
(
"first_file_id"
)]
public
string
FirstFileId
{
get
;
set
;
}
[
Column
(
"file_create_useid"
)]
public
string
FileCreateUseid
{
get
;
set
;
}
[
Column
(
"file_create_useid"
)]
public
string
FileCreateUseid
{
get
;
set
;
}
[
Column
(
"company_name"
)]
public
string
CompanyName
{
get
;
set
;
}
[
Column
(
"company_name"
)]
public
string
CompanyName
{
get
;
set
;
}
[
Column
(
"first_file_name"
)]
public
string
FirstFileName
{
get
;
set
;
}
}
}
}
}
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