using Microsoft.AspNetCore.Http; using WIDESEA_StoragIntegrationServices; namespace WIDESEA_WMSServer.Controllers; [Route("api/[controller]")] [ApiController] public class Dt_CacheInfoController : ApiBaseController { private readonly IDt_CacheInfoService _CacheInfoService; public Dt_CacheInfoController(IDt_CacheInfoService service) : base(service) { _CacheInfoService = service; } /// /// 指定缓存架 /// /// /// [HttpPost, Route("AddCacheInfoByAPP"), AllowAnonymous] public WebResponseContent AddCacheInfoByAPP([FromBody] SaveModel input) { return _CacheInfoService.AddCacheInfoByAPP(input); } }