BaoKai_202508_Wms_Jingwang_.../WMS.IData/IBase/IStorageInfo.cs
2025-08-24 21:52:42 +08:00

40 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WMS.Model.Base;
using System.Data;
namespace WMS.IData.IBase
{
public interface IStorageInfo
{
void UpCompanyStorageInfo(StorageInfoModel storageInfoModel);
/// <summary>
/// 获取仓库信息结果集
/// </summary>
/// <param name="storageInfoModel">仓库信息</param>
/// <returns>仓库信息结果集</returns>
DataTable GetStorageInfoDS(StorageInfoModel storageInfoModel);
/// <summary>
/// 插入或更改仓库信息
/// </summary>
/// <param name="storageTypeModel"></param>
/// <param name="flag">flag 操作标示符 0新增 1:修改</param>
string InsOrUpdStorageInfo(StorageInfoModel storageInfoModel, int flag);
/// <summary>
/// 删除仓库信息
/// </summary>
/// <param name="strStorageTypeID">仓库编号</param>
void DeleteStorageInfo(string strStorageInfoID);
/// <summary>
/// 删除属于某仓库分类的仓库信息
/// </summary>
/// <param name="strStorageTypeID">仓库分类编号</param>
void DeleteStorageInfoByStorageTypeID(string strStorageTypeID);
}
}