Skip to content
  • 当前项目
    • 正在载入...
  • 登录

张东亮 / NS200

%e6%8c%9a%e9%94%a6%e7%a7%91%e6%8a%80
转到一个项目
切换导航栏
切换导航栏固定状态
  • 项目
  • 群组
  • 代码片段
  • 帮助
  • 项目
  • 活动
  • 版本库
  • 图表
  • 网络
  • 创建新的问题
  • 提交
  • 问题看板
  • 文件
  • 提交
  • 网络
  • 比较
  • 分支
  • 标签
切换分支/标签
  • ns200
  • DeviceLibrary
  • AGVService
  • Schemas
  • RtnData.cs
  • 张东亮's avatar
    ns200 · 776848ce
    张东亮 提交于 2023-04-07 18:07:31 +0800
    776848ce
RtnData.cs 338 字节
原文件 审查 历史 永久链接
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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";
    }
}