11
啊鑫
2024-12-23 06287f58cd161d8daa0942a950ca62aa2e10c30f
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)