123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain
- {
- public class Result
- {
- public int Code { get; set; } = -1;
- public string Msg { get; set; } = "未知错误";
- public dynamic? Data { get; set; } = new { };
- }
- /// <summary>
- /// 错误消息
- /// </summary>
- public static class ErrorMsg
- {
- /// <summary>
- /// 端口错误消息提示
- /// </summary>
- public static string Error_Port_Msg = "“portType”:1:WEB;2:ANDROID;3:IOS;请检查端口值是否正确!";
- }
-
- }
|