using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_Core.Utilities;
|
using WIDESEA_Entity.DomainModels;
|
using WIDESEA_Services.Services;
|
|
namespace WIDESEA_Services.Controllers
|
{
|
|
|
public partial class dt_materielinfoController
|
{
|
|
/// <summary>
|
/// 二楼PDA入库
|
/// </summary>
|
/// <param name="saveModel"></param>
|
/// <returns></returns>
|
[HttpPost, HttpGet, Route("materielinfoPagemessg"), AllowAnonymous]
|
public WebResponseContent materielinfoPagemessg([FromBody] SaveModel saveModel)
|
{
|
return dt_materielinfoService.materielinfoPagemessg(saveModel);
|
}
|
}
|
}
|