23 lines
425 B
C#
23 lines
425 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.MES.qc.DTO;
|
|
using ZR.Model.MES.wms;
|
|
|
|
namespace ZR.Service.mes.wms.IService
|
|
{
|
|
public interface IWMentryWarehousing_productService
|
|
{
|
|
|
|
|
|
// 获取库位列表
|
|
public bool IsProductionLoacation(string production_location_code);
|
|
|
|
|
|
|
|
}
|
|
}
|