diff --git a/SGGL/BLL/API/APIPersonService.cs b/SGGL/BLL/API/APIPersonService.cs index 85751fe7..1fdbdf8d 100644 --- a/SGGL/BLL/API/APIPersonService.cs +++ b/SGGL/BLL/API/APIPersonService.cs @@ -1136,11 +1136,7 @@ namespace BLL // 添加过滤条件 if (filter != null) { - // 项目名称过滤(模糊查询) - if (!string.IsNullOrEmpty(filter.ProjectName)) - { - query = query.Where(x => x.ProjectName.Contains(filter.ProjectName)); - } + // 单位名称过滤(模糊查询) if (!string.IsNullOrEmpty(filter.UnitName)) { diff --git a/SGGL/Model/HSSE/PersonInOutRecordInput.cs b/SGGL/Model/HSSE/PersonInOutRecordInput.cs index ebd12ce5..6fe92770 100644 --- a/SGGL/Model/HSSE/PersonInOutRecordInput.cs +++ b/SGGL/Model/HSSE/PersonInOutRecordInput.cs @@ -10,11 +10,7 @@ namespace Model /// 人员出入记录入参 /// public class PersonInOutRecordInput - { - /// - /// 项目名称 - /// - public string ProjectName { get; set; } + { /// /// 项目代号 ///