40 lines
888 B
C#
40 lines
888 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Settings;
|
|
|
|
/// <summary>
|
|
/// 编辑设置项的请求类
|
|
/// </summary>
|
|
public class EditSettingsRequest
|
|
{
|
|
/// <summary>
|
|
/// 设置键
|
|
/// </summary>
|
|
[JsonPropertyName("settingKey")]
|
|
public string? SettingKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置名称
|
|
/// </summary>
|
|
[JsonPropertyName("settingName")]
|
|
public string? SettingName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置值
|
|
/// </summary>
|
|
[JsonPropertyName("settingValue")]
|
|
public string? SettingValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置类型
|
|
/// </summary>
|
|
[JsonPropertyName("settingType")]
|
|
public string? SettingType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[JsonPropertyName("remark")]
|
|
public string? Remark { get; set; }
|
|
|
|
} |