tjx
2025-10-14 e34f1c323e7154adc2df7f6697db8d9ba658b09f
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; }
}