storebook-member

ylbtech-dbs:ylbtech-storebook-member
A, 返回顶部

1,Member

use Storebook
go
-- =============================================
-- ylb:1,会员表
-- =============================================
create table Member
(
memberId int primary key identity(101001,1),    --编号【PK】
username varchar(400) unique not null,            --用户名【UQ】
pwd varchar(400) not null,                --密码
email varchar(400) not null,        --电子邮箱
pubdate datetime default(getdate()),    --时间
flagStatus bit default(0),    --状态 0:正常 1:禁用
flagEable bit default(0)    --是否激活 0:未激活;1:以激活
)

go
-- =============================================
-- ylb:1,用户选项(参数设置)表(用户表)
-- =============================================
create table Preferences
(
referencesId int primary key identity(101,1),    --编号【PK】
cityId varchar(400),        --城市编码【FK】

accountId int not null    --账户ID【FK】
)
go
insert into Preferences(cityId,accountId) values(‘100000‘,101001)
go
-- =============================================
-- table:我的地址
-- =============================================
create table [Address]
(
addressId int primary key identity(101,1),    --编号【PK,ID】
fullName varchar(200),    --收货人
mobile varchar(200),    --联系电话
zipCode varchar(200),    --邮编地址
province varchar(200),    --省
city varchar(200),    --市
area varchar(200),    --区县
addressDetail varchar(200),    --详细地址
shippingTime varchar(200),    --发货时间址
flagDefault bit default(0),    --0:;1:默认送餐地
accountId int    --账号ID【FK】
)
go
go
-- drop table Invoice
-- =============================================
-- table:发票
-- =============================================
create table Invoice
(
invoiceId int primary key identity(101,1),    --编号【PK,ID】
invoiceType varchar(400),    --发票类型 -1:不开发票;0:个人;1:公司
invoiceTitle varchar(400),    --发票抬头
invoiceSubject varchar(400), --发票科目 1=商品明细、2=服装、3=皮具、4=箱包、5=化妆品、6=鞋、7=饰品、8=家居用品、9=珠宝
accountId int    --账号ID【FK】
)
go

2,Member2

-- =============================================
-- DatabaseName:Storebook
-- pubdate:10:41 2014-06-23
-- author:ylbtech
-- =============================================
use Storebook
go

GO
-- =============================================
-- ylb:7,邮箱验证【邮箱验证|找回密码】
-- =============================================
create table AccountEmailCheck
(
[guid] uniqueidentifier not null,    --guid
email varchar(100) not null,    --emial
[type] varchar(20) not null,    --email|getpwd
pubdate datetime default(getdate()),    --申请时间
accountId int    --账户ID【FK】
)
go
-- drop table Coupon
-- =============================================
-- table:优惠劵
-- =============================================
create table Coupon
(
couponId int primary key identity,    --编号【PK,ID】
[name] varchar(200),    --代金券名称
faceValue decimal(8,2),    --面值
minumumAmount decimal(8,2),    --所需消费金额(最低金额)
[type] varchar(200),    --优惠券分类
[desc] varchar(500),    --使用限制

channel varchar(200),    --来源

startTime datetime,    --开始时间【有效时间】
endTime datetime,    --结束时间【有效时间】

[status] varchar(200),    --unused:未使用;used:已使用;old:已过期 locked:未生效

validTime datetime,    --使用时间|过期时间
orderId int,        --订单号

placeId int,    --商场ID【FK】隶属于那个商场
accountId int    --账号ID【FK】
)
go
-- drop table RoompingCart
-- =============================================
-- table: 购物车
-- =============================================
create table RoompingCart
(
roompingCartId int primary key identity(100,1),    --编号【PK,ID】
itemCode int,    --商品编号
[count] int,    --数量
[type] int,    --类型
paramId int,    --参数
accountId int    --账户ID【FK】
)

go
-- drop table settlement
-- =============================================
-- table: 结算
-- =============================================
create table Settlement
(
settlementId int primary key identity(100000,1),    --编号【PK,ID】
itemCount int,    --项目数量
amount decimal(8,2),    --总金额
discount decimal(8,2),    --总优惠
freight decimal(8,2),    --运费
point int,    --获赠积分
payModeCode int,    --支付方式
accountId int    --账户ID【FK】
)
go

go
-- =============================================
-- ylb:1,邮件订阅
-- =============================================

go
-- =============================================
-- ylb:1,收藏夹
-- =============================================

go
-- =============================================
-- ylb:1,关注店铺
-- =============================================

3,

B,返回顶部

1,

2,

C,返回顶部
作者:ylbtech
出处:http://storebook.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
时间: 2024-11-19 14:23:37

storebook-member的相关文章

实战c++中的智能指针unique_ptr系列-- 使用std::unique_ptr代替new operator(错误:‘unique_ptr’ is not a member of ‘std’)

写了很多篇关于vector的博客,其实vector很便捷,也很简单.但是很多易错的问题都是vector中的元素为智能指针所引起的.所以决定开始写一写关于智能指针的故事,尤其是unique_ptr指针的故事. 这是个开始,就让我们使用std::unique_ptr代替new operator吧! 还是用程序说话: #include<iostream> int main() { while (true) int *x = new int; } 看下任务管理器中的内存: 此时使用智能指针unique

PHPCMS \phpcms\modules\member\index.php 用户登陆SQL注入漏洞分析

catalog 1. 漏洞描述 2. 漏洞触发条件 3. 漏洞影响范围 4. 漏洞代码分析 5. 防御方法 6. 攻防思考 1. 漏洞描述2. 漏洞触发条件 0x1: POC http://localhost/phpcms_v9/index.php?m=member&c=index&a=login dosubmit=1&username=phpcms&password=123456%26username%3d%2527%2bunion%2bselect%2b%25272%2

数据库实例: STOREBOOK &gt; 用户 &gt; 编辑 用户: PUBLIC

ylbtech-Oracle:数据库实例: STOREBOOK  >  用户  >  编辑 用户: PUBLIC 编辑 用户: PUBLIC 1. 一般信息返回顶部 1.1, 1.2, 2. 角色返回顶部 2.1, 2.2, 3. 系统权限返回顶部 3.1, 3.2, 4. 对象权限返回顶部 4.1, 4.2, 5. 限额返回顶部 5.1, 作者:ylbtech出处:http://ylbtech.cnblogs.com/本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在

Fatal error: Call to a member function read() on a non

选模版时报错如下:Fatal error: Call to a member function read() on a non-object inC:\wamp\www\DedCms5.7\include\dialog\select_templets.php on line 71或者是/include//templets/default/index.htm Not Found!95%的导致原因是本地测试好了之后上传到服务器的路径问题!解决方法:后台->系统->系统基本设置->核心设置 -

条款23:宁以non-member, non-friend,替换member函数。

考虑下面这种经常出现的使用方式: class webBroswer{ public: ... void clearCache(); void clearHistory(); void removeCookies(); ... }; 那么很自然的就会想到增加这么一种清理方式: class WebBrowser{ public: ... void clearEverything(); }; 或者是这么一种清理方式: void clearBrowser(WebBrowser & wb) { wb.cl

Solve problem &#39;SURF&#39; is not a member of &#39;cv&#39;

SIFT and SURF were moved to nonfree module. You need to add #include <opencv2/nonfree/nonfree.hpp> header and link with opencv_nonfree library. Solve problem 'SURF' is not a member of 'cv'

转:C语言中的static变量和C++静态数据成员(static member)

转自:C语言中的static变量和C++静态数据成员(static member) C语言中static的变量:1).static局部变量        a.静态局部变量在函数内定义,生存期为整个程序运行期间,但作用域与自动变量相同,只能在定义该变量的函数内使用.退出该函数后, 尽管该变量还继续存在,但不能使用它.        b.对基本类型的静态局部变量若在说明时未赋以初值,则系统自动赋予0值.而对自动变量不赋初值,则其值是不定的.2).static全局变量        全局变量本身就是静

&#39;init&#39;:member function definition looks like a ctor(构造函数的缩写)

具体编译的错误提示如下:warning C4183: 'init': member function definition looks like a ctor, but name does not match enclosing classwarning C4183: 'method': member function definition looks like a ctor, but name does not match enclosing classLinking...main.exe -

ECmall错误:Call to a member function get_users_count() on a non-object

问题描述: 在后台添加了一个app报错:Call to a member function get_users_count()Fatal error: Call to a member function get_users_count() on a non-object in \includes\ecapp.base.php on line 问题原因有一下几点: 1.你的APP文件没有对应的Lang文件: 2.你的APP文件和Lang文件如果是UTF编码的,可能是有BOM: 3.你的APP文件和

数据库实例: STOREBOOK &gt; 用户 &gt; 编辑 用户: DBSNMP

ylbtech-Oracle:数据库实例: STOREBOOK  >  用户  >  编辑 用户: DBSNMP 编辑 用户: DBSNMP 1. 一般信息返回顶部 1.1, 1.2, 2. 角色返回顶部 2.1, 2.2, 3. 系统权限返回顶部 3.1, 3.2, 4. 对象权限返回顶部 4.1, 4.2, 5. 限额返回顶部 5.1, 5.2, 6. 使用者组切换权限返回顶部 6.1, 6.2, 7. 代理用户返回顶部 7.1, 7.2, 8.返回顶部 8.1, 作者:ylbtech出处