create table befrom ( bf_id tinyint not null, --顾客来源方式id; bf_name nvarchar(50) not null --顾客来源方式名称; constraint [pk_befrom_bf_id] primary key clustered ( [bf_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --1.Customer顾客表; create table Customer ( cus_id int not null, --顾客id; cus_dt datetime not null default getdate(), --顾客记录生成时间; cus_status tinyint not null, --顾客状态<意向客户(没有过订单,有意向下订单的,可能会成为新客户)、老客户(n天前下过订单)、新客户(n天内下过订单的)>; --cus_level tinyint not null, --顾客店内等级<用于判断一个顾客在店内的消费水平、次数>; cus_name nvarchar(8) not null, --顾客姓名; cus_sex bit not null, --顾客性别; cus_birthday datetime not null, --顾客出生日期; cus_birthdayType bit not null, --顾客出生日期类型:农历、公历; cus_zodiac tinyint not null, --顾客生肖zodiac; cus_contactAddress nvarchar(60) null, --顾客联系地址; cus_contactNumber nvarchar(20) null, --顾客联系手机; cus_contactQQ nvarchar(20) null, --顾客联系QQ; cus_contactEmail nvarchar(60) null, --顾客联系Email; cus_befrom tinyint not null, --顾客来自哪种方式; cus_headPortrait image null, --顾客头像; cus_reserve1 nvarchar(30) null, --预留字段1; cus_reserve2 nvarchar(30) null, --预留字段2; cus_reserve3 nvarchar(30) null, --预留字段3; -- --扩充性:顾客昵称; -- --扩充性:顾客学历; -- --扩充性:顾客单位职业; -- --扩充性:顾客爱好; -- --扩充性:顾客收入水平; -- --扩充性:顾客性格; -- --扩充性:顾客消费水平; constraint [pk_customer_cus_id] primary key clustered ( [cus_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --会员类型; create table memberInfo ( mi_level tinyint not null, --会员级别; mi_name nvarchar(30) not null, --会员级别名称; mi_discount float not null, --会员折扣; constraint [pk_memberinfo_mi_level] primary key clustered ( [mi_level] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --顾客的会员账号,与顾客关联; --顾客第一次下订单时就自动产生(当订单有两个顾客时,以第一顾客为主)? --估计没必要这么做,因为不是网店!但如果这么做也不是不可,只是数据量会比较多,很多顾客都只来一次; --可以做成这样子,如果认为该顾客会消费多次的,那么在下订单时决定要不要为顾客自动生成会员id; create table Member ( mb_id smallint not null, --会员id; mb_cancelling bit not null, --是否注销; mb_level tinyint null, --会员级别(外键-memberinfo); mb_cusId int not null, --顾客id(外键); mb_card nvarchar(32) null, --会员卡号; mb_carddt datetime null, --会员卡(发放)时间,有些会员是没有会员卡的,只消费一次的; mb_balance smallmoney not null, --卡内余额; mb_cumulate float not null, --累计消费; constraint [pk_member_mb_id] primary key clustered ( [mb_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --套系类型; create table PackageKind ( pak_id smallint not null, --套系类型id; pak_name nvarchar(30) not null, --套系类型名称; pak_enable bit not null, --套系类型上下架; constraint [pk_packagekind_pak_id] primary key clustered ( [pak_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --标准套系详情; create table standardPackage ( spa_id tinyint not null, --套系id; spa_kindId smallint not null, --套系类型id(外键); spa_name nvarchar(30) not null, --套系名称; spa_sellingPrice smallmoney not null, --套系售价; spa_selfcost smallmoney not null, --套系成本(spa_goods删减时,spa_selfcost -/+=商品成本价); --spa_disccount float not null, --套系折扣; spa_albumfolio smallint not null, --套系入册张数; spa_negative smallint not null, --套系入底张数; --用一个字符串来表示商品列表到底好不好?优点之一是节省了空间,但是能节省多少,为此上的又带来哪些缺点? spa_goods nvarchar(max) null, --套系商品id列表(每个都是商品id,用分隔符分隔); --pad_goodId smallint not null, --套系商品id; constraint [pk_standardpackage_spa_id] primary key clustered ( [spa_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --2.1.OrderKind订单类型表; create table OrderKind ( ord_id tinyint not null, --订单类型id; ord_name nvarchar(30) not null, --订单类型名称; ord_entryType tinyint not null, --订单走帐类型; ord_enable bit not null --订单类型启动状态; constraint [pk_orderkind_ord_id] primary key clustered ( [ord_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --2.2.Order订单表; --订单id; --订单生成时间; --订单类型:其实类似套系方案类型,但有些订单是不走帐的,所以与套系方案类型不完全一样,主要是用来区分走不走账单的; --如:体验拍、医院孕妇拍(属于一种长期性的订单,被承包了)、学生照、毕业照、员工照都可能是不走帐的;而婚纱照、儿童照、艺术照、写真照等是走账的; --订单顾客1id; --订单顾客1角色<自己、学校、企业、父亲、母亲等关系……>; --<一个订单的顾客数量最多只能有2个,顾客1id不能为空,若只一个人,顾客1角色为自己,如果是为某个学校或企业的填写该顾客的性质名称> --订单顾客2id; --订单顾客2角色; --订单接单人; --订单售价(总价); --订单订金(预收款); --订单套系总览(订单下所有套系名使用分隔符串起来,其中订单售价可以通过这里的套系加减得到总价); --订单完成状态; --订单备注; create table Orders ( ors_id nvarchar(16) not null, ors_dt datetime not null default getdate(), ors_kindId tinyint not null, ors_cus1id int not null, ors_cus1role tinyint not null, ors_cus2id int null, ors_cus2role tinyint null, ors_salasman nvarchar(20) not null, ors_sellingPrice smallmoney not null,--214748.3647 ors_deposit smallmoney not null, ors_packageOutline nvarchar(310) not null, ors_status bit not null, ors_remarks nvarchar(120) null, constraint [pk_orders_ors_id] primary key clustered ( [ors_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go go alter table Orders with check add constraint [FK_orders_orderkind] foreign key(ors_kindId) references OrderKind (ord_id) go alter table Orders check constraint [FK_orders_orderkind] go --订单套系; create table OrderPackage ( opk_id tinyint not null, --订单套系id(属于标准套系中的某一个变种或原本); opk_ordId nvarchar(16) not null, --订单id; constraint [pk_orderpackage_opk_id] primary key clustered ( [opk_id] asc )with (pad_index = off, ignore_dup_key = off) on [primary] ) on [primary] go --3.OrderDetails订单情况表; --订单id; --子订单号; --子订单生成时间; --12.PackageKind套系方案类型; --4.Package套系方案表; --10.套系方案商品表; --5.Employee员工表; --11.Department员工部门表; --6.软件用户表; --7.软件用户组表; --8.软件权限表; --9.影楼信息表;