123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- 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 SharingStaticData
- {
-
-
-
- public static List<int> PortTypes = new() { 1, 2, 3 };
- }
-
-
-
- public static class MsgTips
- {
-
-
-
- public static string Succeed = "操作成功!";
-
-
-
- public static string Fail = "操作失败!";
-
-
-
- public static string AddSucceed = "添加成功!";
-
-
-
- public static string AddFail = "添加失败!";
-
-
-
- public static string EditSucceed = "修改成功!";
-
-
-
- public static string EditFail = "修改失败!";
-
-
-
- public static string Port = "请检查端口值是否正确!“portType”:1:WEB;2:ANDROID;3:IOS;";
-
-
-
- public static string MobilePort = "请检查端口值是否正确!“portType”:2:ANDROID;3:IOS;";
-
-
-
- public static string PageIndex = "请检查当前页面(pageIndex)是否正确!";
-
-
-
- public static string PageSize = "请检查每页长度(pageSize)是否正确!";
-
-
-
- public static string DiId = "请检查团组Id是否正确!";
-
-
-
- public static string Id = "请检查数据Id(id)是否正确!";
-
-
-
- public static string Status = "请检查状态Id(Status)是否正确!1 添加 2 修改";
-
-
-
- public static string UserId = "请检查UserId是否正确!";
-
-
-
- public static string OperateId = "请传入有效的操作类型Id";
-
-
-
- public static string PageId = "请检查PageId是否正确!";
-
-
-
- public static string CheckAuth = "您没有查看权限!";
- }
-
- }
|