修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-03-28 09:48:46 +08:00
parent efcda61104
commit 0e1310324d
3 changed files with 128 additions and 33 deletions
@@ -25,7 +25,7 @@ public class DeleteAuditDocumentInDto
public class GetAuditDocumentDataInDto
{
public Guid? Id { get; set; }
public List<Guid>? Ids { get; set; }
public bool? IsAuthorization { get; set; }
}
@@ -81,29 +81,40 @@ public class MovieFileOrFolderInDto
public Guid ParentId { get; set; }
}
public class AuditDocumentAddOrEdit
public class AuditDocumentUpdateDto
{
public Guid? Id { get; set; }
public AuditDocumentType AuditDocumentTypeEnum { get; set; }
public string FileFormat { get; set; }
public string FilePath { get; set; }
public decimal? FileSize { get; set; }
public bool IsAuthorization { get; set; }
// public Guid? MainFileId { get; set; }
// public Guid? MainFileId { get; set; }
public string Name { get; set; }
public Guid? ParentId { get; set; }
//public int? Version { get; set; }
}
}
public class GetBreadcrumbDataInDto
{
public Guid Id { get; set; }
}
public class AuditDocumentAddOrEdit: AuditDocumentUpdateDto
{
public List<AuditDocumentAddOrEdit> Children { get; set; }=new List<AuditDocumentAddOrEdit>() { };
public bool IsUpdate { get; set; } = true;
}
public class AuditDocumentQuery:PageInput
{