wangxinhui
昨天 011ca316e6ec2ed93e31c45a9ebd9d3c66664871
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models;
 
namespace WIDESEA_WMSServer.Controllers.Basic
{
    /// <summary>
    /// 发货车位信息
    /// </summary>
    [Route("api/SendStationCode")]
    [ApiController]
    public class SendStationCodeController : ApiBaseController<ISendStationCodeService, Dt_SendStationCode>
    {
        public SendStationCodeController(ISendStationCodeService service) : base(service)
        {
        }
    }
}