⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unitinfo.sql

📁 十分好的一个医院管理系统
💻 SQL
字号:
create table unitinfo(
unitcode char(6) not null,	//医保登记号
name char(60) not null,			//单位名称
district char(24) not null,	//单位属地
unittype char(24) not null,	//单位类型
paypercent numeric(8,2) not null,  //单位缴费比例
p_paypercent numeric(8,2) not null,  //个人缴费比例
address char(60) null,			//单位地址
upperunit char(60) null,		//主管部门
legalrep char(16) null,			//单位法人代表
repduty char(16) null,			//法人代表职务
linkman char(16) null,			//联系人
tele char(16) null,				//电话
fax char(16) null,				//传真
bank char(60) null,				//开户银行
account char(60) null,			//银行帐户
accname char(60) null,			//开户姓名
bookindate smalldatetime null,	//参保日期
builddate smalldatetime null,	//建户日期
logoutdate smalldatetime null,	//销户日期
audityear smalldatetime not null,	//审核年份
employs smallint not null,				//在职职工总人数
sumwage numeric(10,2) not null,					//在职职工工资总额
dispercent numeric(8,2) not null,	//在职职工划入比例
t_employs smallint not null,				//退休人员总人数
t_sumwage numeric(10,2) not null,					//退休人员工资总额
t_dispercent numeric(8,2) not null,		//退休人员划入比例
l_employs smallint not null,				//离休人员总人数
l_sumwage numeric(10,2) not null,					//离休人员工资总额
gs_paypercent numeric(8,2) null,
gspay numeric(10,2) null,
sy_paypercent numeric(8,2) null,
sypay numeric(10,2) null,
wbcode char(10) null,		//五笔码
pycode char(10) null,		//拼音码
fundflag tinyint not null,		//拨款标志
stateflag tinyint not null,	//状态标志
updateflag char(60) null,
constraint p_uinfo primary key nonclustered (unitcode) on 'default');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -