C#图书管理系统基础界面设计
C#图书管理系统基础界面设计 --管理员权限表 create table TB_Priority ( PriorityID int primary key, Priority varchar(50) ) go insert into TB_Priority values(1,'系统管理员') insert into TB_Priority values(2,'普通管理员') go --管理员表 create table TB_Ruler ( RulerID int identity(1,1) primary key, RulerName varchar(20) not null, RluerPwd varchar(20) not null, PriorityID int not null foreign key references TB_Priority(PriorityID) ) go insert into TB_Ruler values('admin','admin',1) insert into TB_Ruler values('user','123',2) go --读者类别表 create ta ble TB_ReaderType ( TypeNo int identity(1,1) primary key, TypeName varchar(20), BorrowNum int, TimeLimit int, --不同类别的借书时间 Usefullife int, --图书证的有效期 TypeMemo text )
下载地址
用户评论
参考起来 还不错哟
学习利用C#来进行界面设计不错的例子
学习C#的典型例子,还是不错的
真心觉得不错
例子还可以,值得参考
例子很不错,有用
例子不错可以看看