Browse Source

z

groupmealmanage
zhaoy 7 months ago
parent
commit
c1a499c5ea
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      BPA.SAAS.Manage.Application/System/Services/MenuService.cs

+ 4
- 4
BPA.SAAS.Manage.Application/System/Services/MenuService.cs View File

@@ -131,10 +131,10 @@ namespace BPA.SAAS.Manage.Application.System.Services
public async Task<bool> Add(MenuDtoInput input)
{
var dicttypes = _db.Queryable<BPA_Menu>().Where(a => a.Code == input.Code).ToList();
//if (dicttypes.Count() > 0)
//{
// throw Oops.Oh("编码已存在");
//}
if (dicttypes.Count() > 0)
{
throw Oops.Oh("编码已存在");
}
if (input.Name.Length > 20)
{
throw Oops.Oh("菜单名称过长");


Loading…
Cancel
Save