RtnData.cs
338 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceLibrary.AGVService.Schemas
{
public class RtnData
{
public int code { get; set; } = 200;
public object data { get; set; }
public string msg { get; set; } = "ok";
}
}