From 85c7e28763a489dfeba82d1cf275814da23a3231 Mon Sep 17 00:00:00 2001 From: geh <1923421292@qq.com> Date: Tue, 15 Sep 2026 17:49:45 +0800 Subject: [PATCH] 1 --- SUBQHSE/FineUIPro.Web/CQMS/Check/RewardAndPunish.aspx.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SUBQHSE/FineUIPro.Web/CQMS/Check/RewardAndPunish.aspx.cs b/SUBQHSE/FineUIPro.Web/CQMS/Check/RewardAndPunish.aspx.cs index 4faa0ca..a7146c8 100644 --- a/SUBQHSE/FineUIPro.Web/CQMS/Check/RewardAndPunish.aspx.cs +++ b/SUBQHSE/FineUIPro.Web/CQMS/Check/RewardAndPunish.aspx.cs @@ -258,7 +258,11 @@ namespace FineUIPro.Web.CQMS.Check { if (persionid != null && !string.IsNullOrEmpty(persionid.ToString())) { - return BLL.PersonService.GetPersonById(persionid.ToString()).PersonName; + SitePerson_Person person = BLL.PersonService.GetPersonById(persionid.ToString()); + if (person != null) + { + return person.PersonName; + } } return ""; }