|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.Controllers.Basic;
|
using WIDESEA_Entity.AttributeManager;
|
using WIDESEA_Services.IServices;
|
namespace WIDESEA_Services.Controllers
|
{
|
[Route("api/dt_container")]
|
[PermissionTable(Name = "dt_container")]
|
public partial class dt_containerController : ApiBaseController<Idt_containerService>
|
{
|
private Idt_containerService _service { get; set; }
|
public dt_containerController(Idt_containerService service)
|
: base(service)
|
{
|
_service = service;
|
}
|
}
|
}
|