2025-12-17 10:32:52 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Application;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public class BaseResponseDto
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态码(200代表成功)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonProperty("code")]
|
|
|
|
|
|
[JsonPropertyName("code")]
|
|
|
|
|
|
public int Code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否成功
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool Success => Code == 200;
|
|
|
|
|
|
}
|