空箱补货

This commit is contained in:
qianhao.xu
2024-11-04 10:15:34 +08:00
parent b31e8c76e9
commit f664b5beac
9 changed files with 233 additions and 137 deletions

View File

@@ -6,7 +6,7 @@ using DOAN.Admin.WebApi.Filters;
namespace DOAN.Admin.WebApi.Controllers.PBL;
[Verify]
[AllowAnonymous]
[Route("PBL/bigscreen")]
public class BigScreenController : BaseController
{
@@ -27,7 +27,12 @@ public class BigScreenController : BaseController
return SUCCESS(response);
}
//TODO 查询补料 情况
[HttpGet("searchfeedingMaterial")]
public IActionResult SearchfeedingMaterialInfomation()
{
var response= _BigScreenService.SearchfeedingMaterialInfomation();
return SUCCESS(response);
}
}

View File

@@ -31,7 +31,7 @@
"Issuer": "DOANAdmin.NET", //即token的签发者。
"Audience": "DOANAdmin.NET", //指该token是服务于哪个群体的群体范围
"SecretKey": "SecretKey-DOANADMIN.NET-202311281883838",
"Expire": 0, //jwt登录过期时间
"Expire": 30, //jwt登录过期时间
"RefreshTokenTime": 30, //分钟
"TokenType": "Bearer"
},