标签:
ylbtech-dbs:ylbtech-storebook-inventory |
A, 返回顶部 |
1,
use Storebook go go -- ============================================= -- ylb:商铺库存表 -- refers:Product,Place,Room -- ============================================= create table Inventory ( inventoryId int identity(101,1) primary key, --编号【ID,PK】 [disable] bit default(0), --是否禁用 placeId int, --卖场ID【FK】 roomId int, --商铺ID【FK】 productId int, --商品ID【FK】 price decimal(6,2), --促销价=商场价*折扣 discount int default(100), --折扣 100:无折扣;90:9折 [status] varchar(400), --商品状态 0=已上架;1=已下架;-1:筹备中 即将上市 pubdate datetime default(getdate()) --上架时间 ) go go -- ============================================= -- ylb:商品表 尺码【三级】 -- refers:Inventory,ProductSize 关系表 -- ============================================= create table InventoryProductSize ( inventoryProductSizeId int identity(101,1) primary key, --编号【ID,PK】 inventoryId int, --商品编号【FK】 productSizeId int, --商品尺码ID【FK】 unitsInStock int default(0) check(unitsInStock>=0), --库存量 unitsOnOrder int default(0) check(unitsOnOrder>=0) --采购量 ) go
2,
B,返回顶部 |
1,
2,
C,返回顶部 |
作者:ylbtech 出处:http://storebook.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
标签:
原文地址:http://www.cnblogs.com/storebook/p/4914039.html