1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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 { };
- }
-
-
-
- public static class MsgTips
- {
-
-
-
- public static string Succeed = "操作成功!";
-
-
-
- public static string Fail = "操作失败!";
-
-
-
- public static string Port = "请检查端口值是否正确!“portType”:1:WEB;2:ANDROID;3:IOS;";
-
-
-
- public static string PageIndex = "请检查当前页面(pageIndex)是否正确!";
-
-
-
- public static string PageSize = "请检查每页长度(pageSize)是否正确!";
-
-
-
- public static string DiId = "请检查团组Id(diid)是否正确!";
-
-
-
- public static string Id = "请检查数据Id(id)是否正确!";
-
-
-
- public static string Status = "请检查状态Id(Status)是否正确!1 添加 2 修改";
-
-
-
- public static string UserId = "请检查状态UserId是否正确!";
- }
-
- }
|