using System.Text.Json.Serialization; namespace WcsMain.ApiServe.Dto.Equipment; /// /// 拣选站台信息 /// public class PickStandInfoResponse { /// /// 站台号 /// [JsonPropertyName("standId")] public string? StandId { get; set; } /// /// 箱子号 /// [JsonPropertyName("vehicleNo")] public string? VehicleNo { get; set; } }