first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,16 @@
namespace JSMachine.WMS.RPC.PmsRPC.Dto.Out
{
/// <summary>
/// 返回信息体
/// </summary>
public class ApiResult<T>
{
public bool IsSucc { get; set; }
public int Code { get; set; }
public string OtherInfo { get; set; }
public string Message { get; set; }
public int TotalRecord { get; set; }
public T Data { get; set; }
}
}