Explorar el Código

z

groupmealmanage
zhaoy hace 7 meses
padre
commit
c1a499c5ea
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      BPA.SAAS.Manage.Application/System/Services/MenuService.cs

+ 4
- 4
BPA.SAAS.Manage.Application/System/Services/MenuService.cs Ver fichero

@@ -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("菜单名称过长");


Cargando…
Cancelar
Guardar