huanghongfeng
2025-06-19 085db9d730bbec26f66be555a87c55a79a934347
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
26
27
28
29
using Autofac.Core;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_ISystemService;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.System;
using WIDESEA_SystemService;
 
namespace WIDESEA_WMSServer.Controllers.System
{
    [Route("api/Sys_Traycodeinfo")]
    [ApiController]
    public class Sys_TraycodeinfoController : ApiBaseController<ISys_TraycodeinfoService, Dt_traycodeinfo>
    {
        public Sys_TraycodeinfoController(ISys_TraycodeinfoService service) : base(service)
        {
        }
 
        [HttpPost, Route("AddTenantInfo"), AllowAnonymous]
        public WebResponseContent AddTenantInfo([FromBody] SaveModel saveModel)
        {
            return Service.AddTenantInfo(saveModel);
        }
 
 
    }
}