1. 首页
  2. 编程语言
  3. C#
  4. C#图书管理系统基础界面设计

C#图书管理系统基础界面设计

上传者: 2018-12-07 04:09:20上传 RAR文件 1.1MB 热度 62次
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 )
下载地址
用户评论
码姐姐匿名网友 2018-12-07 04:09:20

参考起来 还不错哟

码姐姐匿名网友 2018-12-07 04:09:20

学习利用C#来进行界面设计不错的例子

qqinfrastructure2443 2018-12-07 04:09:20

学习C#的典型例子,还是不错的

neat256 2024-12-28 13:48:07

真心觉得不错

lxs85686 2024-12-29 19:57:23

例子还可以,值得参考

isoftwares 2025-01-09 20:06:47

例子很不错,有用

ps_cd_sc 2025-01-06 23:27:19

例子不错可以看看