体检系统架构
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
973 B

#region CopyRight
/****************************************************************
* Project:健康体检信息管理系统(PEIS)
* Author:张剑峰
* CLR Version:4.0.30319.42000
* CreateTime:2023-05-01 14:55:27
* Version:v2.0
*
* Description:
*
* History:
*
*****************************************************************
* Copyright @ 云南新八达科技有限公司 2023 All rights reserved
*****************************************************************/
#endregion CopyRight
using System.Collections.Generic;
namespace PEIS.Model
{
public interface IModel<T>
{
List<T> GetItems();
// Boolean HasExits(String value);
// Boolean HasModified(T item);
// T GetByID(Int64 id);
// T GetByCode(String code);
// Boolean SaveItem(T item);
// Boolean UpdateItem(T item);
// Boolean DeleteItem(Int64 id);
// Boolean DeleteItem(String code);
}
}