新增:伙伴云API对接 控制器

This commit is contained in:
2025-12-15 08:51:00 +08:00
parent 4230fa4d27
commit b3520ee98e
8 changed files with 1610 additions and 123 deletions

View File

@@ -10,9 +10,9 @@ namespace Common
public class ReturnInfo
{
public bool isok { set; get; } // 是否成功true成功
public string message { set; get; } // 传递接口信息or报错信息
public string? message { set; get; } // 传递接口信息or报错信息
public int status { set; get; } // 服务器报错信息正确为200错误404/500等
public object response { set; get; } // 获取到的信息本体若报错则为null
public object? response { set; get; } // 获取到的信息本体若报错则为null
}
public class Http
{