--注意事项:
--1)For MSSQL Server2008,Build the tablestructure and Generate it by Powerdesigner16.5 on Mar 1,2017
--2)保留表结构时3种都保留, 1)是此处生成的脚本 2)从数据库中直接生成的脚本 3)Copy *.mdf/*.ldf文件
--3)对于要删除tbFixtureInfo表结构时,需要先删除具有外键的表(tbStencilAppointCheck、tbStencilScrap),测试好以后最好不要修改表结构,(后来去掉了外键关系)
--4)钢网台账表、治具(治具/支撑块/刮刀共表)、蒙板表
--5)钢网领用归还表tbOutStock、、
if exists (select 1
from sysobjects
where id = object_id('tbDeptTeam')
and type = 'U')
drop table tbDeptTeam
go
/*==============================================================*/
/* Table: tbDeptTeam */
/*==============================================================*/
create table tbDeptTeam (
fDeptTeamNo char(2) not null,
fDeptTeamName char(16) not null,
constraint PK_TBDEPT primary key (fDeptTeamNo)
)
go
--此处部门当作科室用,后来为适应加班系统增加了所属部门、工厂、职位几个字段
if exists (select 1
from sysobjects
where id = object_id('tbEmployee')
and type = 'U')
drop table tbEmployee
go
/*==============================================================*/
/* Table: tbEmployee */
/*==============================================================*/
create table tbEmployee (
fEmpNo char(8) not null,
fEmpName char(8) not null,
fEmpSex char(2) null,
fEmpCellphone char(11) not null,
fEmpExt char(5) null,
fEmpEmail char(25) null,
fEmpDept char(2) null,
fEmpBelongDept char(12) null,
fEmpDegree char(1) null,
fEmpDuty char(25) null,
fEmpFactory char(8) null,
fEmpServiceItem char(30) null,
fN char(1) null,
fEmpBZ varchar(60) null,
constraint PK_TBEMPLOYEE primary key (fEmpNo)
)
go
--权限表还要修改, 用户+ 模块 + 权限
if exists (select 1
from sysobjects
where id = object_id('tbRight')
and type = 'U')
drop table tbRight
go
/*==============================================================*/
/* Table: tbRight */
/*==============================================================*/
create table tbRight (
fOperatorID char(10) not null,
fUserName char(8) null,
fMenuID int null,
fRoleID int null,
fLoginPW char(12) not null,
fNewadd bit null,
fModify bit null,
fDel bit null,
fImport bit null,
fExport bit null,
fQuery bit null,
fPrintReport bit null,
fCheckAccept bit null,
fApprove bit null,
fr1 bit null,
fr2 bit null,
fr3 bit null,
fr4 bit null,
fr5 bit null,
constraint PK_TBRIGHT primary key (fOperatorID)
)
go
if exists (select 1 --Update on May 26,2017
from sysobjects
where id = object_id('tbRight')
and type = 'U')
drop table tbRight
go
/*==============================================================*/
/* Table: tbRight */
/*==============================================================*/
create table tbRight (
fOperatorID char(10) not null,
fUserName char(8) null,
fLoginPW char(12) not null,
fGroupID char(22) null,
fu1 char(20) null,
fu2 char(20) null,
fu3 char(20) null,
fu4 char(20) null,
fu5 varchar(50) null,
constraint PK_TBRIGHT primary key (fOperatorID)
)
go
if exists (select 1
from sysobjects
where id = object_id('tbPurview')
and type = 'U')
drop table tbPurview
go
/*==============================================================*/
/* Table: tbPurview */
/*==============================================================*/
create table tbPurview (
fUserID char(10) not null,
fFucID char(8) null,
fSFun char(12) not null,
fPFun char(22) null,
fHasFun bit null,
fAdd bit null,
fModify bit null,
fDel bit null,
fImport bit null,
fExport bit null,
fQuery bit null,
fPrint bit null,
fCheck bit null,
fApprove bit null,
fGrant bit null,
fr1 bit null,
fr2 bit null,
fr3 bit null,
fr4 bit null,
fr5 bit null,
constraint PK_tbPurview primary key (fUserID)
)
--insert tbRight(fOperatorID,fUserName,fLoginPW) values('2384609','牛利甫','2384609')
--insert tbRight(fOperatorID,fUserName,fLoginPW) values('480138','裴杰','480138')
--insert tbRight(fOperatorID,fUserName,fLoginPW) values('2700896','杨胜春','6')
--insert tbRight(fOperatorID,fUserName,fLoginPW) values('gwf001','钢网房','001')
--insert tbRight(fOperatorID,fUserName,fLoginPW) values('gwf002','钢网房','002')
if exists (select 1
from sysobjects
where id = object_id('tbFixtureClass')
and type = 'U')
drop table tbFixtureClass
go
/*==============================================================*/
/* Table: tbFixtureClass */
/*==============================================================*/
create table tbFixtureClass (
fzjClassID char(10) not null,
fzjClassName char(10) not null,
fcheckWK char(10) null,
constraint PK_TBFIXTURECLASS primary key (fzjClassID)
)
go
if exists (select 1
from sysobjects
where id = object_id('tbCustomer')
and type = 'U')
drop table tbCustomer
go
/*==============================================================*/
/* Table: tbCustomer */
/*==============================================================*/
create table tbCustomer (
fcustNo char(2) not null,
fcustName char(50) null,
co
没有合适的资源?快使用搜索试试~ 我知道了~
一个加班申报程序(delphi7)
共58个文件
ico:7个
pas:6个
~pas:6个
需积分: 10 11 下载量 175 浏览量
2017-08-24
14:46:09
上传
评论
收藏 1.68MB RAR 举报
温馨提示
完成的加班申报程序(小程序,Delphi7), 用了Raize控件5.5 + DevExpress14.2.2 那个图标都没修改,可怜本机安装软件的权限都没有, 还是连接到服务器上工作的,搞个毛线啊...,PC/网络服务都被外包出去了, 这就是本次离职的原因,想折腾Python,没人收留, 再说这年龄了......
资源推荐
资源详情
资源评论
收起资源包目录
OT_20170517.rar (58个子文件)
OT_20170517
UnitConfig.dfm 2KB
dbconn.ini 91B
UnitConfig.pas 5KB
UnitLogin.ddp 51B
UnitMain.~dfm 1KB
UnitMain.~pas 3KB
UnitLogin.dcu 9KB
PrjMain.exe 4.88MB
UnitDM.ddp 51B
PrjMain.res 876B
UnitDM.dcu 4KB
UnitLogin.dfm 21KB
UnitConfig.~ddp 51B
UnitConfig.~pas 5KB
UnitLogin.~ddp 51B
UnitDM.~dfm 802B
PrjMain.dpr 508B
PrjMain.~dpr 508B
module
UnitEmp.~ddp 51B
UnitApplyOT.~ddp 51B
UnitEmp.ddp 51B
UnitApplyOT.~dfm 18KB
UnitEmp.dfm 62KB
UnitApplyOT.~pas 38KB
UnitEmp.~pas 25KB
UnitApplyOT.dcu 35KB
UnitEmp.~dfm 62KB
UnitEmp.pas 25KB
UnitEmp.dcu 34KB
UnitApplyOT.pas 38KB
UnitApplyOT.ddp 51B
UnitApplyOT.dfm 18KB
UnitLogin.~dfm 21KB
UnitConfig.~dfm 2KB
PrjMain.cfg 446B
UnitConfig.ddp 51B
UnitLogin.pas 5KB
UnitMain.~ddp 51B
UnitDM.dfm 916B
icon
clock_6.ico 766B
clock_1.ico 766B
clock_3.ico 766B
clock_5.ico 766B
clock_2.ico 766B
clock_7.ico 766B
clock_4.ico 766B
UnitMain.dcu 8KB
UnitMain.ddp 51B
UnitDM.pas 3KB
PrjMain.dof 2KB
UnitMain.dfm 1KB
UnitLogin.vlb 3B
UnitMain.pas 3KB
UnitDM.~pas 3KB
UnitConfig.dcu 10KB
UnitLogin.~pas 5KB
UnitDM.~ddp 51B
EquipmentSQL_20170528_ok.sql 92KB
共 58 条
- 1
资源评论
wu_min
- 粉丝: 6
- 资源: 128
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 三条移动平均线相交的EA交易策略
- JAVA的SpringBoot高校学生公寓宿舍管理系统源码数据库 MySQL源码类型 WebForm
- 猫狗识别系统(python+UI界面)
- 布拉格结构相关资料.zip
- C#ASP.NET企业在线记账平台源码数据库 SQL2012源码类型 WebForm
- PHP客户关系CRM管理系统源码数据库 MySQL源码类型 WebForm
- python-勇者斗恶龙 回合制游戏 有图有真相 英雄和怪兽行为和状态的设定
- JAVA的Springboot垃圾分类识别小程序源码带部署文档数据库 MySQL源码类型 WebForm
- 图像分类数据集:番茄叶片病害图像识别数据集(包括划分好的数据【文件夹保存】、类别字典文件)
- web版本实现迅飞语音听写(流式版)封装代码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功