You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
661 B
27 lines
661 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Warehouse.Models;
|
|
using Warehouse.Models.mesModel;
|
|
using Warehouse.DAL.LCL;
|
|
|
|
namespace Warehouse.BLL.LCL
|
|
{
|
|
|
|
public class LCLBLL
|
|
{
|
|
private LCLDal LCLDalobj = new LCLDal();
|
|
//public ReturnMsg LCL(string palletno, string containerno, string containerqty)
|
|
//{
|
|
// //查询托盘信息
|
|
// var PalletInfo = LCLDalobj.QueryPallet(palletno);
|
|
// if (PalletInfo == null)
|
|
// {
|
|
// return new ReturnMsg { Res = 0, Msg = "托盘不正确" };
|
|
// }
|
|
//}
|
|
|
|
|
|
}
|
|
}
|