| | |
| | | |
| | | return resultEntity; |
| | | } |
| | | |
| | | |
| | | public ResultEntity GetZhengfuProjectDTOByTitle(string Title, string Id, DateTime? NoticeTime) |
| | | { |
| | | ResultEntity resultEntity = new ResultEntity(); |
| | | resultEntity.Result = true; |
| | | if(!string.IsNullOrWhiteSpace(Title) && NoticeTime.HasValue) |
| | | { |
| | | var checkUserSn = _webcontext.ZhengfuProjects.Where(x => x.Title == Title && x.RecStatus == "A" && x.Id != Id && x.NoticeTime >= NoticeTime.Value.AddDays(-1) && x.NoticeTime <= NoticeTime.Value.AddDays(1)).FirstOrDefault(); |
| | | if (checkUserSn != null && (string.IsNullOrWhiteSpace(Id) || (!string.IsNullOrWhiteSpace(Id) && checkUserSn.Id != Id))) |
| | | { |
| | | resultEntity.Result = false; |
| | | resultEntity.Message = "该页面已经存在"; |
| | | |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | return resultEntity; |
| | | } |
| | | |
| | | |
| | | } |
| | | } |