BaoKai_202508-Wms-Jingwang..../WMS.IData/IBase/IBaseCtlGoods.cs
2025-08-24 09:35:55 +08:00

38 lines
847 B
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 System.Data;
using WMS.Model.Base;
namespace WMS.IData.IBase
{
public interface IBaseCtlGoods
{
/// <summary>
/// 查询容器数据
/// </summary>
/// <param name="model">实体Model</param>
/// <returns></returns>
DataTable GetDataByID(BaseCtlGoodsModel model);
/// <summary>
/// 操作容器数据
/// </summary>
/// <param name="model">实体Model</param>
/// <param name="flag">0:新增 1修改</param>
void Operator(List<BaseCtlGoodsModel> model, int flag);
/// <summary>
/// 删除容器数据
/// </summary>
/// <param name="Model">实体Model</param>
void DeleteData(BaseCtlGoodsModel Model);
}
}