WorkCamera/server/Zr.Admin.NET/ZR.Model/Business/Dto/MigrationUpdateDto.cs
2026-01-05 21:20:55 +08:00

35 lines
751 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ZR.Model.Business.Dto
{
/// <summary>
/// 迁移URL更新请求
/// </summary>
public class MigrationUpdateDto
{
/// <summary>
/// 记录ID
/// </summary>
public int RecordId { get; set; }
/// <summary>
/// 图片URL映射列表
/// </summary>
public List<MigrationUrlPair> ImageUrls { get; set; }
}
/// <summary>
/// URL映射对
/// </summary>
public class MigrationUrlPair
{
/// <summary>
/// 旧URL服务器本地
/// </summary>
public string OldUrl { get; set; }
/// <summary>
/// 新URLCOS
/// </summary>
public string NewUrl { get; set; }
}
}