This commit is contained in:
PastSaid
2024-03-18 11:42:45 +08:00
parent 08d8878eef
commit c31957eb64
56 changed files with 1485 additions and 123 deletions

View File

@@ -0,0 +1,19 @@
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; }
}
}