修改webservice

This commit is contained in:
2023-05-04 19:17:56 +08:00
parent 873a92c078
commit 8bf83936b2
11 changed files with 486 additions and 19 deletions
+7 -1
View File
@@ -1,4 +1,5 @@
using System;
using BLL.CNCECHSSEService;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
@@ -719,5 +720,10 @@ namespace BLL
if (now.Month < birthDate.Month || (now.Month == birthDate.Month && now.Day < birthDate.Day)) age--;
return age;
}
public static Model.Base_Unit GetIsThisUnit()
{
return Funs.DB.Base_Unit.FirstOrDefault(x=>x.UnitId==Const.UnitId_CD);
}
}
}