南骏 池
2025-05-19 2250a274775ba3d14aa233739565edbed987b9b6
Controllers/base/MessageCenterController.cs
@@ -36,6 +36,27 @@
        }
    }
    //getBadge
    [HttpPost("getBadge")]
    public ResponseResult getBadge()
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.getBadge();
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
    //Resend
    [HttpPost("Resend")]
    public ResponseResult Resend(MessageCenter data)