新增WMS推送

This commit is contained in:
2025-07-21 17:54:00 +08:00
parent 94d802d5da
commit 134c3bdfe8
4 changed files with 49 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.WMS
{
public class WMSResponse
{
public int Code { get; set; }
public string Message { get; set; }
public Dictionary<string, string> Value { get; set; }
public int View { get; set; }
}
}