27 lines
480 B
C#
27 lines
480 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
|
|||
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.DB;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 返回PLCDB块同时返回 PLC名称的请求实体
|
|||
|
|
/// </summary>
|
|||
|
|
public class GetDBWithPlcNameRequest
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// DB 名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("dbName")]
|
|||
|
|
public string? DBName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// plc编号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonPropertyName("plcId")]
|
|||
|
|
public int? PlcId { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|