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.
19 lines
336 B
19 lines
336 B
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
|
|
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|