Files
iMES_Net/iMES.WebApi/Controllers/Calendar/Cal_PlanShiftController.cs

22 lines
645 B
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
/*
*,
*Partial文件夹Cal_PlanShiftController编写
*/
using Microsoft.AspNetCore.Mvc;
using iMES.Core.Controllers.Basic;
using iMES.Entity.AttributeManager;
using iMES.Calendar.IServices;
namespace iMES.Calendar.Controllers
{
[Route("api/Cal_PlanShift")]
[PermissionTable(Name = "Cal_PlanShift")]
public partial class Cal_PlanShiftController : ApiBaseController<ICal_PlanShiftService>
{
public Cal_PlanShiftController(ICal_PlanShiftService service)
: base(service)
{
}
}
}