13 lines
304 B
C#
13 lines
304 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.Stocktaking
|
|
{
|
|
public class GetStockTakingOrderMatDetailRequest:RequestBase
|
|
{
|
|
public int StockTakingOrderId { get; set; }
|
|
public string StockTakingOrderNumber { get; set; }
|
|
}
|
|
}
|