zhao
2021-07-02 23ee356c6f260ecc1a48bbb8bd60932b979e4698
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using HH.WMS.BLL;
using HH.WMS.BLL.OutStock;
using HH.WMS.Entitys;
using HH.WMS.Entitys.Common;
using HH.WMS.WebApi.Areas.Common.Controllers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
 
namespace HH.WMS.WebApi.Areas.OutStock.Controllers
{
    public class ShipmentController : BaseController
    {
        #region 发运通知列表
        /// <summary>
        /// 发运通知列表
        /// </summary>
        /// <param name="searchModel"></param>
        /// <returns></returns>
        [HttpPost]
        public OperateResult NoticeList(SearchModel searchModel)
        {
            return ValidateToken(searchModel.TokenId, t =>
            {
                return BLLCreator.Create<TN_WM_SHIPPING_NOTIFYBLL>().NoticeList(searchModel);
            });
        }
        #endregion
    }
}