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.WebApi/Controllers/YARD/OP_YARD_CTNMNG_WORKControll...

22 lines
675 B
C#

2 years ago
/*
*,
*PartialOP_YARD_CTNMNG_WORKController
*/
using Microsoft.AspNetCore.Mvc;
using VOL.Core.Controllers.Basic;
using VOL.Entity.AttributeManager;
using VOL.YARD.IServices;
namespace VOL.YARD.Controllers
{
[Route("api/OP_YARD_CTNMNG_WORK")]
[PermissionTable(Name = "OP_YARD_CTNMNG_WORK")]
public partial class OP_YARD_CTNMNG_WORKController : ApiBaseController<IOP_YARD_CTNMNG_WORKService>
{
public OP_YARD_CTNMNG_WORKController(IOP_YARD_CTNMNG_WORKService service)
: base(service)
{
}
}
}