Product_Wms/WcsMain/ApiServe/Dto/WcsDto/DB/EditeDBRequest.cs

36 lines
762 B
C#
Raw Normal View History

2024-10-07 09:51:55 +08:00
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.WcsDto.DB;
2024-10-07 09:51:55 +08:00
public class EditeDBRequest
{
/// <summary>
/// PLCID
/// </summary>
[JsonPropertyName("plcId")]
public int? PlcId { get; set; }
/// <summary>
/// DB名称
/// </summary>
[JsonPropertyName("dbName")]
public string? DbName { get; set; }
/// <summary>
/// DB地址
/// </summary>
[JsonPropertyName("dbAddress")]
public string? DbAddress { get; set; }
/// <summary>
/// 是否系统级别
/// </summary>
[JsonPropertyName("isSystem")]
public int? IsSystem { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonPropertyName("remark")]
public string? Remark { get; set; }
}