dengjunjie
2024-11-20 0d2f7d905975c1f5d39f70689760b070cef31349
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Outbound
{
    [Route("api/OutboundOrder_Hty")]
    [ApiController]
    public class OutboundOrderHtyController : ApiBaseController<IOutboundOrderHtyService, Dt_OutboundOrder_hty>
    {
        public OutboundOrderHtyController(IOutboundOrderHtyService service) : base(service)
        {
        }
    }
}