wcs_serve_wuxikate/WcsMain/ApiServe/Controllers/Dto/WcsDto/Equipment/StackerContinueRequest.cs

14 lines
316 B
C#
Raw Normal View History

2025-01-03 14:36:27 +08:00
using DataCheck;
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Equipment;
public class StackerContinueRequest
{
/// <summary>
/// 堆垛机编号
/// </summary>
[DataRules]
[JsonPropertyName("stackerId")]
public string? StackerId { get; set; }
}