1
dengjunjie
2025-06-19 fbc6fae6c793220d0b67ac603ce9bbf22837de79
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/OutboundOrderDetail_Hty")]
    [ApiController]
    public class OutboundOrderDetailHtyController : ApiBaseController<IOutboundOrderDetailHtyService, Dt_OutboundOrderDetail_Hty>
    {
        public OutboundOrderDetailHtyController(IOutboundOrderDetailHtyService service) : base(service)
        {
        }
    }
}