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

35 lines
999 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.IData;
using WMS.Model.Base;
namespace WMS.IData.IBase
{
public interface IBaseRemarkDictionary
{
/// <summary>
/// 获取得到备注信息集
/// </summary>
/// <param name="model">用于条件查询</param>
/// <returns>备注信息集</returns>
DataTable GetRemarkDictionaryTable(BaseRemarkDictionaryModel model);
/// <summary>
/// 新增或修改备注信息
/// </summary>
/// <param name="model">要被新增或修改的备注信息</param>
/// <param name="flag">flag 操作标示符 0新增 1:修改</param>
void InsOrUpdRemarkDictionary(BaseRemarkDictionaryModel model, int flag);
/// <summary>
/// 删除备注信息
/// </summary>
/// <param name="ID">备注ID</param>
void DeleteRemarkDictionary(string ID);
}
}