You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
510 B

using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using VOL.Core.Controllers.Basic;
using VOL.Core.Extensions;
using VOL.Core.Filters;
using VOL.System.IServices;
namespace VOL.System.Controllers
{
[Route("api/Sys_Dictionary")]
public partial class Sys_DictionaryController : ApiBaseController<ISys_DictionaryService>
{
public Sys_DictionaryController(ISys_DictionaryService service)
: base("System", "System", "Sys_Dictionary", service)
{
}
}
}