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