更新 Admin.NET/Admin.NET.Core/Service/File/Dto/FileInput.cs
文件管理功能添加是否公开附件功能
This commit is contained in:
parent
b899c47e5c
commit
61b5bef016
@ -18,6 +18,12 @@ public class FileInput : BaseIdInput
|
||||
/// </summary>
|
||||
public string FileType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否公开
|
||||
/// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
||||
/// </summary>
|
||||
public bool IsPublic { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件Url
|
||||
/// </summary>
|
||||
@ -72,6 +78,12 @@ public class UploadFileFromBase64Input
|
||||
/// 文件类型
|
||||
/// </summary>
|
||||
public string FileType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否公开
|
||||
/// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
||||
/// </summary>
|
||||
public bool IsPublic { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@ -90,6 +102,12 @@ public class FileUploadInput
|
||||
/// </summary>
|
||||
public string FileType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否公开
|
||||
/// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
||||
/// </summary>
|
||||
public bool IsPublic { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 文件路径
|
||||
/// </summary>
|
||||
@ -168,6 +186,12 @@ public class FileOutput
|
||||
/// </summary>
|
||||
public string FileType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否公开
|
||||
/// 如果设置true,所有人都可以查看,默认只有自己或有权限的人可以查看
|
||||
/// </summary>
|
||||
public bool IsPublic { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上传人
|
||||
/// </summary>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user