storebook-notice,note

ylbtech-dbs:ylbtech-storebook-notice,note
A, 返回顶部

1,

use Storebook
go
go
-- =============================================
-- ylb:1,公告【公共】
-- =============================================
create table Notice
(
noticeId int identity(101,1) primary key,    --编号【ID,PK】
title varchar(200),    --标题
content varchar(4000),                    --内容
[type] varchar(200),    --类型 卖场|商铺 mall|room
pubdate datetime default(getdate()),    --时间

placeId int,   --购物中心ID【FK】
roomId int   --商铺ID【FK】
)
go
-- =============================================
-- ylb:1,购物中心留言板【公共】【内容仅本商场可见】
-- =============================================
create table Note
(
noteId int identity(101,1) primary key,    --编号【ID,PK】
content varchar(200),                    --内容
pubdate datetime default(getdate()),    --时间
flagRead bit default(0),    --查看状态 0:未读;1:已读
[type] varchar(200),    --类型 卖场|商铺 mall|room
noteType varchar(200),    --留言类型
[disable] bit default(0),--是否禁用

placeId int,   --购物中心ID【FK】
roomId int   --商铺ID【FK】
)
go

2,

B,返回顶部

1,

2,

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

storebook-notice,note的相关文章

GCC 4.9.0 发布,提升 C++11 和 C++14 特性

from :http://www.oschina.net/news/51084/gcc-4-9-0 GCC 4.9.0 发布,此版本是个主要版本更新,包括了 GCC 4.8.x 系列和之前的 GCC 版本都没有的新特性,新特性非常之多.下载地址:http://gcc.gnu.org/mirrors.html 警告 移除 mudflap 运行时检查器,mudflap 选项保留,但没有任何效果. 对一些很多老的系统和一些不维护的平台的支持在 4.9 版本中声明为过世的,下一个版本将永久删除,例如 S

lintcode-easy-Ugly Number

Write a program to check whether a given number is an ugly number`. Ugly numbers are positive numbers whose prime factors only include 2,3, 5. For example, 6, 8 are ugly while 14 is not ugly since it includes another prime factor 7. Notice Note that 

GCC 4.9.0 公布,提升 C++11 和 C++14 特性

from :http://www.oschina.net/news/51084/gcc-4-9-0 GCC 4.9.0 公布,此版本号是个主要版本号更新,包含了 GCC 4.8.x 系列和之前的 GCC 版本号都没有的新特性,新特性很之多.下载地址:http://gcc.gnu.org/mirrors.html 警告 移除 mudflap 执行时检查器,mudflap 选项保留,但没有不论什么效果. 对一些非常多老的系统和一些不维护的平台的支持在 4.9 版本号中声明为过世的,下一个版本号将永久

lintcode-medium-Ugly Number II

Ugly number is a number that only have factors 2, 3 and 5. Design an algorithm to find the nth ugly number. The first 10 ugly numbers are 1, 2, 3, 4, 5, 6, 8, 9, 10, 12... Notice Note that 1 is typically treated as an ugly number. Example If n=9, ret

[LintCode] Ugly Number 丑陋数

Write a program to check whether a given number is an ugly number`. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6, 8 are ugly while 14 is not ugly since it includes another prime factor 7. Notice Note that

517. Ugly Number

Write a program to check whether a given number is an ugly number`. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6, 8 are ugly while 14 is not ugly since it includes another prime factor 7. Example Given nu

Note of sed

refers to <Linux Command Line and Shell Scripting Bible> date:Sep 17 2016 format for using sed command: set options script file command of 's',the s command substitutes a second text string for the first text string pattern specified between the for

Git Note - git tag

git tag is used to create labels, usually for version numbers. Format: git tag <TagName> <refer> Example: git tag v0.1 HEAD is to create a version number v0.1 on current HEAD. Notice: When you git push your code to remote server, you need to a

Operating System: Three Easy Pieces --- Page Fault (Note)

Recall that with TLB misses, we have two types of systems: Hardware managed TLBs (where the hardware looks in the page table to find the desired translation) and software managed TLBs ( where the OS does). In either type of systems, if a page is not