20 lines
404 B
C#
20 lines
404 B
C#
using EastChanger.Entites;
|
|
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EastChanger.STK_StockCountGain
|
|
{
|
|
public class CountGainRequest : BaseRequest<List<Dictionary<string, object>>>
|
|
{
|
|
/// <summary>
|
|
/// 盘点日期
|
|
/// </summary>
|
|
public string inventoryDt { get; set; }
|
|
|
|
|
|
}
|
|
}
|