2024-10-07 09:51:55 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|