dengjunjie
5 天以前 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922
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)
        {
        }
    }
}