wangxinhui
2024-09-23 a3eb67538c4716aef9967f1e6301720cce095e3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
        }
    }
}