using HL_FristAidPlatform_Help; using HL_FristAidPlatform_Models; namespace HL_FristAidPlatform_IDataBase { /// /// 接口层T_Base_WristStrap /// public interface IT_Base_WristStrap { #region 成员方法 /// /// 增加一条数据 /// bool Add(T_Base_WristStrap model); /// /// 更新一条数据 /// bool Update(T_Base_WristStrap model); /// /// 删除数据 /// bool Delete(long ID); /// /// 获取单个数据 /// T_Base_WristStrap Get(long ID); /// /// 获得数据列表 /// /// 关键词 /// 状态0:空闲1:使用中2:维护中 /// 启用标记0启用1禁用 TableModel GetList(string keyWord, int status, int deleteFlag); /// /// 根据标签卡号获取ID /// /// /// TableModel GetIDForWristStrapCode(string WristStrapCode); #endregion 成员方法 /// /// 更新状态 /// /// /// int UpdateStatus(T_Base_WristStrap model); } }