You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
270 B

namespace WmsWebApi.ZlldcjLogs;
public class ReturnResult
{
public char TYPE { get; set; } = 'S';
public string MESSAGE { get; set; } = "接收成功!";
public string REQUEST_SYSTEM { get; set; } = "WinWMS";
public ReturnResult()
{
}
}