zhanghonglin
2026-01-09 d67a81314f3e208a0b1da978c1e4177e6426a388
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_IBasicService;
using WIDESEA_Model.Models.Outbound;
 
namespace WIDESEA_WMSServer.Controllers.Basic
{
    [Route("api/outboundOrde_hty")]
    [ApiController]
    public class OutboundOrder_HtyController : ApiBaseController<IOutboundOrder_HtyService, Dt_OutboundOrder_Hty>
    {
        public OutboundOrder_HtyController(IOutboundOrder_HtyService service) : base(service)
        {
        }
    }
}