添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UserRelation;
/// <summary>
/// 用户分页列表输出.
/// </summary>
[SuppressSniffer]
public class UserPageListOutput
{
/// <summary>
/// 用户id.
/// </summary>
public string userId { get; set; }
/// <summary>
/// 用户名称.
/// </summary>
public string userName { get; set; }
}

View File

@@ -0,0 +1,20 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UserRelation;
/// <summary>
/// 用户关系创建输入.
/// </summary>
[SuppressSniffer]
public class UserRelationCrInput
{
/// <summary>
/// 关系类型.
/// </summary>
public string objectType { get; set; }
/// <summary>
/// 用户数组.
/// </summary>
public List<string> userIds { get; set; }
}

View File

@@ -0,0 +1,15 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UserRelation;
/// <summary>
/// 用户关系输入.
/// </summary>
[SuppressSniffer]
public class UserRelationInput
{
/// <summary>
/// 用户列表.
/// </summary>
public List<string> userId { get; set; }
}

View File

@@ -0,0 +1,30 @@
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UserRelation;
/// <summary>
/// 用户关系列表.
/// </summary>
[SuppressSniffer]
public class UserRelationListOutput
{
/// <summary>
/// 名称.
/// </summary>
public string fullName { get; set; }
/// <summary>
/// 用户id.
/// </summary>
public string id { get; set; }
/// <summary>
/// 头像.
/// </summary>
public string headIcon { get; set; }
/// <summary>
/// 组织.
/// </summary>
public string organize { get; set; }
}