11
啊鑫
2025-01-13 cb23d88faf0bd112db57816c5cc02e47eb685324
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)