人力资源表.sql 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /************************************************************************/
  2. /*
  3. 程序编写: Jeff
  4. 版 本: V 1.0
  5. 建立日期: 2015-05-21
  6. 功能说明: 人力资源系列表;
  7. 备 注:
  8. 部门表,物理表;
  9. 职位表,物理表;
  10. 员工表,物理表;
  11. 员工职务表,记录员工职务相关信息(一个员工,可有多个职位);
  12. 员工待遇福利表,记录员工的各种待遇和福利信息(一个员工,可以有多种待遇福利);
  13. 员工值班表;
  14. 修改日期:
  15. 修改说明:
  16. */
  17. /************************************************************************/
  18. /************************************************************************/
  19. /*
  20. 表 名:Department
  21. 表描述:部门表(物理表);
  22. 表架构:
  23. 1.一个部门可以有多种职位,如影楼门市部有:主门市,副门市,巴台收银,接线员....;
  24. */
  25. /************************************************************************/
  26. set ansi_nulls on
  27. go
  28. set quoted_identifier on
  29. go
  30. set ansi_padding on
  31. go
  32. --判断表是否存在,不存在则创建;
  33. if not exists(select * from dbo.sysobjects where id = object_id(N'Department') and objectproperty(id,'IsTable') = 1)
  34. begin
  35. create table [dbo].[Department](
  36. [dep_id] [nvarchar](16) not null, -- 部门id(唯一);
  37. [dep_name] [nvarchar](24) not null, -- 部门名称;
  38. -- 部门权利;
  39. -- 主键;
  40. constraint [PK_Department] primary key clustered
  41. (
  42. [dep_id] asc
  43. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  44. -- 设置UNIQUE约束;
  45. constraint [UK_Department] unique nonclustered
  46. (
  47. [dep_name] asc
  48. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary]
  49. ) on [primary]
  50. end
  51. go
  52. set ansi_padding off
  53. /************************************************************************/
  54. /*
  55. 表 名:Position
  56. 表描述:职位表(物理表);
  57. 表架构:
  58. 每个员工,可以身兼多职,所以职位表是必要的;
  59. */
  60. /************************************************************************/
  61. -- 职位表Position;
  62. set ansi_nulls on
  63. go
  64. set quoted_identifier on
  65. go
  66. set ansi_padding on
  67. go
  68. --判断表是否存在,不存在则创建;
  69. if not exists(select * from dbo.sysobjects where id = object_id(N'Position') and objectproperty(id,'IsTable') = 1)
  70. begin
  71. create table [dbo].[Position](
  72. [pos_id] [nvarchar](36) not null, -- 职位id;
  73. [pos_name] [nvarchar](24) not null, -- 职位名称;
  74. [department] [nvarchar](16) not null, -- 职位所属部门;
  75. -- 职位学历要求;
  76. -- 职位经验要求;
  77. -- 职位年龄要求;
  78. -- 职位性别要求;
  79. -- 职位基本薪资(有些公司薪资与职位不挂勾,可空);
  80. -- 职位职责;
  81. -- 主键;
  82. constraint [PK_Position] primary key clustered
  83. (
  84. [posid] asc
  85. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  86. -- 设置UNIQUE约束;
  87. constraint [UK_Position] unique nonclustered
  88. (
  89. [posname] asc,
  90. [department] asc,
  91. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary]
  92. ) on [primary]
  93. end
  94. go
  95. set ansi_padding off
  96. /************************************************************************/
  97. /*
  98. 表 名:Personnel
  99. 表描述:员工表(物理表);
  100. 表架构:
  101. ;
  102. */
  103. /************************************************************************/
  104. set ansi_nulls on
  105. go
  106. set quoted_identifier on
  107. go
  108. set ansi_padding on
  109. go
  110. --判断表是否存在,不存在则创建;
  111. if not exists(select * from dbo.sysobjects where id = object_id(N'Personnel') and objectproperty(id,'IsTable') = 1)
  112. begin
  113. create table [dbo].[Personnel](
  114. [per_id] [nvarchar](36) not null, -- 员工工号(唯一);
  115. [per_name] [nvarchar](24) not null, -- 员工姓名;
  116. [per_sex] [nvarchar](4) not null, -- 员工性别;
  117. [per_hometown] [nvarchar](48) not null, -- 员工籍贯;
  118. [per_nation] [nvarchar](16) not null, -- 员工民族;
  119. [per_birthday] [nvarchar](16) not null, -- 员工生日;
  120. [per_identity] [nvarchar](64) not null, -- 员工身份证号(唯一);
  121. [per_address] [nvarchar](64) not null, -- 员工现居地;
  122. [per_married] [nvarchar](64) not null, -- 员工婚否;
  123. [per_Graduated] [nvarchar](64) not null, -- 员工毕业院校;
  124. [per_Education] [nvarchar](16) not null, -- 员工学历;
  125. [per_special] [nvarhcar](64) not null, -- 员工专业;
  126. [per_Email] [nvarchar](64) not null, -- 员工Email;
  127. [per_phone] [nvarchar](16) not null, -- 员工手机;
  128. [per_QQ] [nvarchar](24) not null, -- 员工QQ;
  129. [per_WX] [nvarchar](36) not null, -- 员工微信;
  130. [per_ecperson1] [nvarchar](24) not null, -- 员工紧急联系人1 emergency contact person;
  131. [per_ecphone1] [nvarchar](16) not null, -- 员工紧急联系人1手机 emergency contact phone;
  132. [per_ecperson2] [nvarchar](24) not null, -- 员工紧急联系人2;
  133. [per_ecphone2] [nvarchar](16) not null, -- 员工紧急联系人2手机;
  134. [per_Image] [image] null, -- 员工工作照;
  135. [per_identityfrontphoto] [image] null, -- 员工身份照-正面;
  136. [per_identitybackphoto] [image] null, -- 员工身份照-背面;
  137. -- 主键;
  138. constraint [PK_Personnel] primary key clustered
  139. (
  140. [perid] asc
  141. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  142. -- 设置UNIQUE约束;
  143. constraint [UK_Personnel] unique nonclustered
  144. (
  145. [peridentity] asc
  146. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary]
  147. ) on [primary]
  148. end
  149. go
  150. set ansi_padding off