/*
 *代ç ç”±æ¡†æž¶ç”Ÿæˆ,任何更改都å¯èƒ½å¯¼è‡´è¢«ä»£ç ç”Ÿæˆå™¨è¦†ç›–
 *如果è¦å¢žåŠ æ–¹æ³•è¯·åœ¨å½“å‰ç›®å½•下Partial文件夹Dt_InterfacerecordController编写
 */
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.Controllers.Basic;
using WIDESEA_Entity.AttributeManager;
using WIDESEA_Services.IServices;
namespace WIDESEA_Services.Controllers
{
    [Route("api/Dt_Interfacerecord")]
    [PermissionTable(Name = "Dt_Interfacerecord")]
    public partial class Dt_InterfacerecordController : ApiBaseController<IDt_InterfacerecordService>
    {
        public Dt_InterfacerecordController(IDt_InterfacerecordService service)
        : base(service)
        {
        }
    }
}