cnf
12 小时以前 6ed9adbcf4011e7b5cc09eb7564b5c116daf9c67
WebApi/Gs.Toolbox/InterfaceUtil.cs
@@ -76,7 +76,7 @@
        if (_rtn != -1)
        {
            Result _result = JsonConvert.DeserializeObject<Result>(responseStr);
            if ("200".Equals(_result.state))
            if ("200".Equals(_result.code))
                _rtn = 1;
        }
@@ -116,11 +116,10 @@
    /// <summary>
    /// 200成功,否则失败
    /// </summary>
    public string? state { get; set; }
    public string? code { get; set; }
    public string? msg { get; set; }
    public string? status { get; set; }
    public string? count { get; set; }
    public string? message { get; set; }
}