using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Dto.WcsDto.DB;
///
/// 返回PLCDB块同时返回 PLC名称的响应实体
///
public class GetDBWithPlcNameResponse
{
///
/// plc ID
///
[JsonPropertyName("plcId")]
public int? PlcId { get; set; }
///
/// plc 名称
///
[JsonPropertyName("plcName")]
public string? PlcName { get; set; }
///
/// db的名称
///
[JsonPropertyName("dbName")]
public string? DBName { get; set; }
///
/// db 地址
///
[JsonPropertyName("dbAddress")]
public string? DBAddress { get; set; }
///
/// 是否系统级别
///
[JsonPropertyName("isSystem")]
public int? IsSystem { get; set; }
///
/// 备注
///
[JsonPropertyName("remark")]
public string? Remark { get; set; }
}