wms_serve_m_jinwangbancai/WmsMobileServe/ApiServe/Mobile/Dto/GetCanUseGoodsRequest.cs

21 lines
395 B
C#
Raw Normal View History

2024-12-29 13:06:15 +08:00
using System.Text.Json.Serialization;
namespace WmsMobileServe.ApiServe.Mobile.Dto;
public class GetCanUseGoodsRequest
{
/// <summary>
/// 采购单号
/// </summary>
[JsonPropertyName("orderId")]
public string? OrderId { get; set; }
/// <summary>
/// 物料号
/// </summary>
[JsonPropertyName("goodsId")]
public string? GoodsId { get; set; }
}