You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Vue.Net/VOL.Builder/Controllers/Core/Sys_TableInfoController.cs

20 lines
472 B
C#

using System;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Builder.IServices;
using VOL.Core.Controllers.Basic;
using Microsoft.AspNetCore.Mvc;
namespace VOL.Builder.Controllers
{
public partial class Sys_TableInfoController : WebBaseController<ISys_TableInfoService>
{
public Sys_TableInfoController(ISys_TableInfoService service)
: base("Builder","Core","Sys_TableInfo", service)
{
}
}
}