catalog.sql 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. create table befrom
  2. (
  3. bf_id tinyint not null, --顾客来源方式id;
  4. bf_name nvarchar(50) not null --顾客来源方式名称;
  5. constraint [pk_befrom_bf_id] primary key clustered
  6. (
  7. [bf_id] asc
  8. )with (pad_index = off, ignore_dup_key = off) on [primary]
  9. )
  10. on [primary]
  11. go
  12. --1.Customer顾客表;
  13. create table Customer
  14. (
  15. cus_id int not null, --顾客id;
  16. cus_dt datetime not null default getdate(), --顾客记录生成时间;
  17. cus_status tinyint not null, --顾客状态<意向客户(没有过订单,有意向下订单的,可能会成为新客户)、老客户(n天前下过订单)、新客户(n天内下过订单的)>;
  18. --cus_level tinyint not null, --顾客店内等级<用于判断一个顾客在店内的消费水平、次数>;
  19. cus_name nvarchar(8) not null, --顾客姓名;
  20. cus_sex bit not null, --顾客性别;
  21. cus_birthday datetime not null, --顾客出生日期;
  22. cus_birthdayType bit not null, --顾客出生日期类型:农历、公历;
  23. cus_zodiac tinyint not null, --顾客生肖zodiac;
  24. cus_contactAddress nvarchar(60) null, --顾客联系地址;
  25. cus_contactNumber nvarchar(20) null, --顾客联系手机;
  26. cus_contactQQ nvarchar(20) null, --顾客联系QQ;
  27. cus_contactEmail nvarchar(60) null, --顾客联系Email;
  28. cus_befrom tinyint not null, --顾客来自哪种方式;
  29. cus_headPortrait image null, --顾客头像;
  30. cus_reserve1 nvarchar(30) null, --预留字段1;
  31. cus_reserve2 nvarchar(30) null, --预留字段2;
  32. cus_reserve3 nvarchar(30) null, --预留字段3;
  33. -- --扩充性:顾客昵称;
  34. -- --扩充性:顾客学历;
  35. -- --扩充性:顾客单位职业;
  36. -- --扩充性:顾客爱好;
  37. -- --扩充性:顾客收入水平;
  38. -- --扩充性:顾客性格;
  39. -- --扩充性:顾客消费水平;
  40. constraint [pk_customer_cus_id] primary key clustered
  41. (
  42. [cus_id] asc
  43. )with (pad_index = off, ignore_dup_key = off) on [primary]
  44. )
  45. on [primary]
  46. go
  47. --会员类型;
  48. create table memberInfo
  49. (
  50. mi_level tinyint not null, --会员级别;
  51. mi_name nvarchar(30) not null, --会员级别名称;
  52. mi_discount float not null, --会员折扣;
  53. constraint [pk_memberinfo_mi_level] primary key clustered
  54. (
  55. [mi_level] asc
  56. )with (pad_index = off, ignore_dup_key = off) on [primary]
  57. )
  58. on [primary]
  59. go
  60. --顾客的会员账号,与顾客关联;
  61. --顾客第一次下订单时就自动产生(当订单有两个顾客时,以第一顾客为主)?
  62. --估计没必要这么做,因为不是网店!但如果这么做也不是不可,只是数据量会比较多,很多顾客都只来一次;
  63. --可以做成这样子,如果认为该顾客会消费多次的,那么在下订单时决定要不要为顾客自动生成会员id;
  64. create table Member
  65. (
  66. mb_id smallint not null, --会员id;
  67. mb_cancelling bit not null, --是否注销;
  68. mb_level tinyint null, --会员级别(外键-memberinfo);
  69. mb_cusId int not null, --顾客id(外键);
  70. mb_card nvarchar(32) null, --会员卡号;
  71. mb_carddt datetime null, --会员卡(发放)时间,有些会员是没有会员卡的,只消费一次的;
  72. mb_balance smallmoney not null, --卡内余额;
  73. mb_cumulate float not null, --累计消费;
  74. constraint [pk_member_mb_id] primary key clustered
  75. (
  76. [mb_id] asc
  77. )with (pad_index = off, ignore_dup_key = off) on [primary]
  78. )
  79. on [primary]
  80. go
  81. --套系类型;
  82. create table PackageKind
  83. (
  84. pak_id smallint not null, --套系类型id;
  85. pak_name nvarchar(30) not null, --套系类型名称;
  86. pak_enable bit not null, --套系类型上下架;
  87. constraint [pk_packagekind_pak_id] primary key clustered
  88. (
  89. [pak_id] asc
  90. )with (pad_index = off, ignore_dup_key = off) on [primary]
  91. )
  92. on [primary]
  93. go
  94. --标准套系详情;
  95. create table standardPackage
  96. (
  97. spa_id tinyint not null, --套系id;
  98. spa_kindId smallint not null, --套系类型id(外键);
  99. spa_name nvarchar(30) not null, --套系名称;
  100. spa_sellingPrice smallmoney not null, --套系售价;
  101. spa_selfcost smallmoney not null, --套系成本(spa_goods删减时,spa_selfcost -/+=商品成本价);
  102. --spa_disccount float not null, --套系折扣;
  103. spa_albumfolio smallint not null, --套系入册张数;
  104. spa_negative smallint not null, --套系入底张数;
  105. --用一个字符串来表示商品列表到底好不好?优点之一是节省了空间,但是能节省多少,为此上的又带来哪些缺点?
  106. spa_goods nvarchar(max) null, --套系商品id列表(每个都是商品id,用分隔符分隔);
  107. --pad_goodId smallint not null, --套系商品id;
  108. constraint [pk_standardpackage_spa_id] primary key clustered
  109. (
  110. [spa_id] asc
  111. )with (pad_index = off, ignore_dup_key = off) on [primary]
  112. )
  113. on [primary]
  114. go
  115. --2.1.OrderKind订单类型表;
  116. create table OrderKind
  117. (
  118. ord_id tinyint not null, --订单类型id;
  119. ord_name nvarchar(30) not null, --订单类型名称;
  120. ord_entryType tinyint not null, --订单走帐类型;
  121. ord_enable bit not null --订单类型启动状态;
  122. constraint [pk_orderkind_ord_id] primary key clustered
  123. (
  124. [ord_id] asc
  125. )with (pad_index = off, ignore_dup_key = off) on [primary]
  126. )
  127. on [primary]
  128. go
  129. --2.2.Order订单表;
  130. --订单id;
  131. --订单生成时间;
  132. --订单类型:其实类似套系方案类型,但有些订单是不走帐的,所以与套系方案类型不完全一样,主要是用来区分走不走账单的;
  133. --如:体验拍、医院孕妇拍(属于一种长期性的订单,被承包了)、学生照、毕业照、员工照都可能是不走帐的;而婚纱照、儿童照、艺术照、写真照等是走账的;
  134. --订单顾客1id;
  135. --订单顾客1角色<自己、学校、企业、父亲、母亲等关系……>;
  136. --<一个订单的顾客数量最多只能有2个,顾客1id不能为空,若只一个人,顾客1角色为自己,如果是为某个学校或企业的填写该顾客的性质名称>
  137. --订单顾客2id;
  138. --订单顾客2角色;
  139. --订单接单人;
  140. --订单售价(总价);
  141. --订单订金(预收款);
  142. --订单套系总览(订单下所有套系名使用分隔符串起来,其中订单售价可以通过这里的套系加减得到总价);
  143. --订单完成状态;
  144. --订单备注;
  145. create table Orders
  146. (
  147. ors_id nvarchar(16) not null,
  148. ors_dt datetime not null default getdate(),
  149. ors_kindId tinyint not null,
  150. ors_cus1id int not null,
  151. ors_cus1role tinyint not null,
  152. ors_cus2id int null,
  153. ors_cus2role tinyint null,
  154. ors_salasman nvarchar(20) not null,
  155. ors_sellingPrice smallmoney not null,--214748.3647
  156. ors_deposit smallmoney not null,
  157. ors_packageOutline nvarchar(310) not null,
  158. ors_status bit not null,
  159. ors_remarks nvarchar(120) null,
  160. constraint [pk_orders_ors_id] primary key clustered
  161. (
  162. [ors_id] asc
  163. )with (pad_index = off, ignore_dup_key = off) on [primary]
  164. )
  165. on [primary]
  166. go
  167. go
  168. alter table Orders
  169. with check add constraint [FK_orders_orderkind] foreign key(ors_kindId)
  170. references OrderKind (ord_id)
  171. go
  172. alter table Orders check constraint [FK_orders_orderkind]
  173. go
  174. --订单套系;
  175. create table OrderPackage
  176. (
  177. opk_id tinyint not null, --订单套系id(属于标准套系中的某一个变种或原本);
  178. opk_ordId nvarchar(16) not null, --订单id;
  179. constraint [pk_orderpackage_opk_id] primary key clustered
  180. (
  181. [opk_id] asc
  182. )with (pad_index = off, ignore_dup_key = off) on [primary]
  183. )
  184. on [primary]
  185. go
  186. --3.OrderDetails订单情况表;
  187. --订单id;
  188. --子订单号;
  189. --子订单生成时间;
  190. --12.PackageKind套系方案类型;
  191. --4.Package套系方案表;
  192. --10.套系方案商品表;
  193. --5.Employee员工表;
  194. --11.Department员工部门表;
  195. --6.软件用户表;
  196. --7.软件用户组表;
  197. --8.软件权限表;
  198. --9.影楼信息表;