|
|
@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Http; |
|
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
using Microsoft.Extensions.Logging; |
|
|
|
using WTA.Application.Identity.Entities.SystemManagement; |
|
|
|
using WTA.Shared.Attributes; |
|
|
|
using WTA.Shared.Controllers; |
|
|
|
using WTA.Shared.Data; |
|
|
|
|
|
|
@ -31,4 +32,15 @@ public class CentralizedControlController : GenericController<CentralizedControl |
|
|
|
{ |
|
|
|
return base.Delete(guids); |
|
|
|
} |
|
|
|
[HttpPost, Multiple, Display(Name = "关闭期间")] |
|
|
|
public IActionResult? ClosedVersion() |
|
|
|
{ |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
[HttpPost,Multiple,Display(Name ="开启期间")] |
|
|
|
public IActionResult? OpenVersion() |
|
|
|
{ |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|