1
dengjunjie
2025-02-18 d5c610cbf2451bbf9a103c295ae51e541ad98951
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)
        {
        }
    }
}