Commit 1efa49c7 by xiongyuwen

no message

parent e102ab02
......@@ -10,8 +10,5 @@ namespace Bailun.Discuz.Application.Util
public const string File_List_Tree = "FileListTree";
public const string ForuK_First_File_List = "FirstFileList";
public const string ForuK_File_List_Tree = "FileListTree";
}
}
......@@ -6,7 +6,7 @@ namespace Bailun.Discuz.Application.WeiPan.Dto.ResponseDto
{
public class ItemItem
{
public string firstFileName { get; set; }
public string firstfileid { get; set; }
/// <summary>
///
......
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; }
}
}
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; }
}
}
......@@ -24,6 +24,6 @@ namespace Bailun.Discuz.Domain.WeiPan
[Column("first_file_id")] public string FirstFileId { get; set; }
[Column("file_create_useid")] public string FileCreateUseid { get; set; }
[Column("company_name")] public string CompanyName { get; set; }
[Column("first_file_name")] public string FirstFileName { get; set; }
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment