根据脚本依次创建数据库
mall_oms:订单服务
mall_pms:商品服务
mall_sms:营销服务
mall_ums:用户服务
mall_wms:库存服务
image.png

1、mall-oms

  1. drop table if exists oms_order;
  2. drop table if exists oms_order_item;
  3. drop table if exists oms_order_operate_history;
  4. drop table if exists oms_order_return_apply;
  5. drop table if exists oms_order_return_reason;
  6. drop table if exists oms_order_setting;
  7. drop table if exists oms_payment_info;
  8. drop table if exists oms_refund_info;
  9. /*==============================================================*/
  10. /* Table: oms_order */
  11. /*==============================================================*/
  12. create table oms_order
  13. (
  14. id bigint not null auto_increment comment 'id',
  15. member_id bigint comment 'member_id',
  16. order_sn char(32) comment '订单号',
  17. coupon_id bigint comment '使用的优惠券',
  18. create_time datetime comment 'create_time',
  19. member_username varchar(200) comment '用户名',
  20. total_amount decimal(18,4) comment '订单总额',
  21. pay_amount decimal(18,4) comment '应付总额',
  22. freight_amount decimal(18,4) comment '运费金额',
  23. promotion_amount decimal(18,4) comment '促销优化金额(促销价、满减、阶梯价)',
  24. integration_amount decimal(18,4) comment '积分抵扣金额',
  25. coupon_amount decimal(18,4) comment '优惠券抵扣金额',
  26. discount_amount decimal(18,4) comment '后台调整订单使用的折扣金额',
  27. pay_type tinyint comment '支付方式【1->支付宝;2->微信;3->银联; 4->货到付款;】',
  28. source_type tinyint comment '订单来源[0->PC订单;1->app订单]',
  29. status tinyint comment '订单状态【0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单】',
  30. delivery_company varchar(64) comment '物流公司(配送方式)',
  31. delivery_sn varchar(64) comment '物流单号',
  32. auto_confirm_day int comment '自动确认时间(天)',
  33. integration int comment '可以获得的积分',
  34. growth int comment '可以获得的成长值',
  35. bill_type tinyint comment '发票类型[0->不开发票;1->电子发票;2->纸质发票]',
  36. bill_header varchar(255) comment '发票抬头',
  37. bill_content varchar(255) comment '发票内容',
  38. bill_receiver_phone varchar(32) comment '收票人电话',
  39. bill_receiver_email varchar(64) comment '收票人邮箱',
  40. receiver_name varchar(100) comment '收货人姓名',
  41. receiver_phone varchar(32) comment '收货人电话',
  42. receiver_post_code varchar(32) comment '收货人邮编',
  43. receiver_province varchar(32) comment '省份/直辖市',
  44. receiver_city varchar(32) comment '城市',
  45. receiver_region varchar(32) comment '区',
  46. receiver_detail_address varchar(200) comment '详细地址',
  47. note varchar(500) comment '订单备注',
  48. confirm_status tinyint comment '确认收货状态[0->未确认;1->已确认]',
  49. delete_status tinyint comment '删除状态【0->未删除;1->已删除】',
  50. use_integration int comment '下单时使用的积分',
  51. payment_time datetime comment '支付时间',
  52. delivery_time datetime comment '发货时间',
  53. receive_time datetime comment '确认收货时间',
  54. comment_time datetime comment '评价时间',
  55. modify_time datetime comment '修改时间',
  56. primary key (id)
  57. );
  58. alter table oms_order comment '订单';
  59. /*==============================================================*/
  60. /* Table: oms_order_item */
  61. /*==============================================================*/
  62. create table oms_order_item
  63. (
  64. id bigint not null auto_increment comment 'id',
  65. order_id bigint comment 'order_id',
  66. order_sn char(32) comment 'order_sn',
  67. spu_id bigint comment 'spu_id',
  68. spu_name varchar(255) comment 'spu_name',
  69. spu_pic varchar(500) comment 'spu_pic',
  70. spu_brand varchar(200) comment '品牌',
  71. category_id bigint comment '商品分类id',
  72. sku_id bigint comment '商品sku编号',
  73. sku_name varchar(255) comment '商品sku名字',
  74. sku_pic varchar(500) comment '商品sku图片',
  75. sku_price decimal(18,4) comment '商品sku价格',
  76. sku_quantity int comment '商品购买的数量',
  77. sku_attrs_vals varchar(500) comment '商品销售属性组合(JSON)',
  78. promotion_amount decimal(18,4) comment '商品促销分解金额',
  79. coupon_amount decimal(18,4) comment '优惠券优惠分解金额',
  80. integration_amount decimal(18,4) comment '积分优惠分解金额',
  81. real_amount decimal(18,4) comment '该商品经过优惠后的分解金额',
  82. gift_integration int comment '赠送积分',
  83. gift_growth int comment '赠送成长值',
  84. primary key (id)
  85. );
  86. alter table oms_order_item comment '订单项信息';
  87. /*==============================================================*/
  88. /* Table: oms_order_operate_history */
  89. /*==============================================================*/
  90. create table oms_order_operate_history
  91. (
  92. id bigint not null auto_increment comment 'id',
  93. order_id bigint comment '订单id',
  94. operate_man varchar(100) comment '操作人[用户;系统;后台管理员]',
  95. create_time datetime comment '操作时间',
  96. order_status tinyint comment '订单状态【0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单】',
  97. note varchar(500) comment '备注',
  98. primary key (id)
  99. );
  100. alter table oms_order_operate_history comment '订单操作历史记录';
  101. /*==============================================================*/
  102. /* Table: oms_order_return_apply */
  103. /*==============================================================*/
  104. create table oms_order_return_apply
  105. (
  106. id bigint not null auto_increment comment 'id',
  107. order_id bigint comment 'order_id',
  108. sku_id bigint comment '退货商品id',
  109. order_sn char(32) comment '订单编号',
  110. create_time datetime comment '申请时间',
  111. member_username varchar(64) comment '会员用户名',
  112. return_amount decimal(18,4) comment '退款金额',
  113. return_name varchar(100) comment '退货人姓名',
  114. return_phone varchar(20) comment '退货人电话',
  115. status tinyint(1) comment '申请状态[0->待处理;1->退货中;2->已完成;3->已拒绝]',
  116. handle_time datetime comment '处理时间',
  117. sku_img varchar(500) comment '商品图片',
  118. sku_name varchar(200) comment '商品名称',
  119. sku_brand varchar(200) comment '商品品牌',
  120. sku_attrs_vals varchar(500) comment '商品销售属性(JSON)',
  121. sku_count int comment '退货数量',
  122. sku_price decimal(18,4) comment '商品单价',
  123. sku_real_price decimal(18,4) comment '商品实际支付单价',
  124. reason varchar(200) comment '原因',
  125. description varchar(500) comment '描述',
  126. desc_pics varchar(2000) comment '凭证图片,以逗号隔开',
  127. handle_note varchar(500) comment '处理备注',
  128. handle_man varchar(200) comment '处理人员',
  129. receive_man varchar(100) comment '收货人',
  130. receive_time datetime comment '收货时间',
  131. receive_note varchar(500) comment '收货备注',
  132. receive_phone varchar(20) comment '收货电话',
  133. company_address varchar(500) comment '公司收货地址',
  134. primary key (id)
  135. );
  136. alter table oms_order_return_apply comment '订单退货申请';
  137. /*==============================================================*/
  138. /* Table: oms_order_return_reason */
  139. /*==============================================================*/
  140. create table oms_order_return_reason
  141. (
  142. id bigint not null auto_increment comment 'id',
  143. name varchar(200) comment '退货原因名',
  144. sort int comment '排序',
  145. status tinyint(1) comment '启用状态',
  146. create_time datetime comment 'create_time',
  147. primary key (id)
  148. );
  149. alter table oms_order_return_reason comment '退货原因';
  150. /*==============================================================*/
  151. /* Table: oms_order_setting */
  152. /*==============================================================*/
  153. create table oms_order_setting
  154. (
  155. id bigint not null auto_increment comment 'id',
  156. flash_order_overtime int comment '秒杀订单超时关闭时间(分)',
  157. normal_order_overtime int comment '正常订单超时时间(分)',
  158. confirm_overtime int comment '发货后自动确认收货时间(天)',
  159. finish_overtime int comment '自动完成交易时间,不能申请退货(天)',
  160. comment_overtime int comment '订单完成后自动好评时间(天)',
  161. member_level tinyint(2) comment '会员等级【0-不限会员等级,全部通用;其他-对应的其他会员等级】',
  162. primary key (id)
  163. );
  164. alter table oms_order_setting comment '订单配置信息';
  165. /*==============================================================*/
  166. /* Table: oms_payment_info */
  167. /*==============================================================*/
  168. create table oms_payment_info
  169. (
  170. id bigint not null auto_increment comment 'id',
  171. order_sn char(32) comment '订单号(对外业务号)',
  172. order_id bigint comment '订单id',
  173. alipay_trade_no varchar(50) comment '支付宝交易流水号',
  174. total_amount decimal(18,4) comment '支付总金额',
  175. subject varchar(200) comment '交易内容',
  176. payment_status varchar(20) comment '支付状态',
  177. create_time datetime comment '创建时间',
  178. confirm_time datetime comment '确认时间',
  179. callback_content varchar(4000) comment '回调内容',
  180. callback_time datetime comment '回调时间',
  181. primary key (id)
  182. );
  183. alter table oms_payment_info comment '支付信息表';
  184. /*==============================================================*/
  185. /* Table: oms_refund_info */
  186. /*==============================================================*/
  187. create table oms_refund_info
  188. (
  189. id bigint not null auto_increment comment 'id',
  190. order_return_id bigint comment '退款的订单',
  191. refund decimal(18,4) comment '退款金额',
  192. refund_sn varchar(64) comment '退款交易流水号',
  193. refund_status tinyint(1) comment '退款状态',
  194. refund_channel tinyint comment '退款渠道[1-支付宝,2-微信,3-银联,4-汇款]',
  195. refund_content varchar(5000),
  196. primary key (id)
  197. );
  198. alter table oms_refund_info comment '退款信息';

2、mall-pms

  1. drop table if exists pms_attr;
  2. drop table if exists pms_attr_attrgroup_relation;
  3. drop table if exists pms_attr_group;
  4. drop table if exists pms_brand;
  5. drop table if exists pms_category;
  6. drop table if exists pms_category_brand_relation;
  7. drop table if exists pms_comment_replay;
  8. drop table if exists pms_product_attr_value;
  9. drop table if exists pms_sku_images;
  10. drop table if exists pms_sku_info;
  11. drop table if exists pms_sku_sale_attr_value;
  12. drop table if exists pms_spu_comment;
  13. drop table if exists pms_spu_images;
  14. drop table if exists pms_spu_info;
  15. drop table if exists pms_spu_info_desc;
  16. /*==============================================================*/
  17. /* Table: pms_attr */
  18. /*==============================================================*/
  19. create table pms_attr
  20. (
  21. attr_id bigint not null auto_increment comment '属性id',
  22. attr_name char(30) comment '属性名',
  23. search_type tinyint comment '是否需要检索[0-不需要,1-需要]',
  24. icon varchar(255) comment '属性图标',
  25. value_select char(255) comment '可选值列表[用逗号分隔]',
  26. attr_type tinyint comment '属性类型[0-销售属性,1-基本属性,2-既是销售属性又是基本属性]',
  27. enable bigint comment '启用状态[0 - 禁用,1 - 启用]',
  28. catelog_id bigint comment '所属分类',
  29. show_desc tinyint comment '快速展示【是否展示在介绍上;0-否 1-是】,在sku中仍然可以调整',
  30. primary key (attr_id)
  31. );
  32. alter table pms_attr comment '商品属性';
  33. /*==============================================================*/
  34. /* Table: pms_attr_attrgroup_relation */
  35. /*==============================================================*/
  36. create table pms_attr_attrgroup_relation
  37. (
  38. id bigint not null auto_increment comment 'id',
  39. attr_id bigint comment '属性id',
  40. attr_group_id bigint comment '属性分组id',
  41. attr_sort int comment '属性组内排序',
  42. primary key (id)
  43. );
  44. alter table pms_attr_attrgroup_relation comment '属性&属性分组关联';
  45. /*==============================================================*/
  46. /* Table: pms_attr_group */
  47. /*==============================================================*/
  48. create table pms_attr_group
  49. (
  50. attr_group_id bigint not null auto_increment comment '分组id',
  51. attr_group_name char(20) comment '组名',
  52. sort int comment '排序',
  53. descript varchar(255) comment '描述',
  54. icon varchar(255) comment '组图标',
  55. catelog_id bigint comment '所属分类id',
  56. primary key (attr_group_id)
  57. );
  58. alter table pms_attr_group comment '属性分组';
  59. /*==============================================================*/
  60. /* Table: pms_brand */
  61. /*==============================================================*/
  62. create table pms_brand
  63. (
  64. brand_id bigint not null auto_increment comment '品牌id',
  65. name char(50) comment '品牌名',
  66. logo varchar(2000) comment '品牌logo地址',
  67. descript longtext comment '介绍',
  68. show_status tinyint comment '显示状态[0-不显示;1-显示]',
  69. first_letter char(1) comment '检索首字母',
  70. sort int comment '排序',
  71. primary key (brand_id)
  72. );
  73. alter table pms_brand comment '品牌';
  74. /*==============================================================*/
  75. /* Table: pms_category */
  76. /*==============================================================*/
  77. create table pms_category
  78. (
  79. cat_id bigint not null auto_increment comment '分类id',
  80. name char(50) comment '分类名称',
  81. parent_cid bigint comment '父分类id',
  82. cat_level int comment '层级',
  83. show_status tinyint comment '是否显示[0-不显示,1显示]',
  84. sort int comment '排序',
  85. icon char(255) comment '图标地址',
  86. product_unit char(50) comment '计量单位',
  87. product_count int comment '商品数量',
  88. primary key (cat_id)
  89. );
  90. alter table pms_category comment '商品三级分类';
  91. /*==============================================================*/
  92. /* Table: pms_category_brand_relation */
  93. /*==============================================================*/
  94. create table pms_category_brand_relation
  95. (
  96. id bigint not null auto_increment,
  97. brand_id bigint comment '品牌id',
  98. catelog_id bigint comment '分类id',
  99. brand_name varchar(255),
  100. catelog_name varchar(255),
  101. primary key (id)
  102. );
  103. alter table pms_category_brand_relation comment '品牌分类关联';
  104. /*==============================================================*/
  105. /* Table: pms_comment_replay */
  106. /*==============================================================*/
  107. create table pms_comment_replay
  108. (
  109. id bigint not null auto_increment comment 'id',
  110. comment_id bigint comment '评论id',
  111. reply_id bigint comment '回复id',
  112. primary key (id)
  113. );
  114. alter table pms_comment_replay comment '商品评价回复关系';
  115. /*==============================================================*/
  116. /* Table: pms_product_attr_value */
  117. /*==============================================================*/
  118. create table pms_product_attr_value
  119. (
  120. id bigint not null auto_increment comment 'id',
  121. spu_id bigint comment '商品id',
  122. attr_id bigint comment '属性id',
  123. attr_name varchar(200) comment '属性名',
  124. attr_value varchar(200) comment '属性值',
  125. attr_sort int comment '顺序',
  126. quick_show tinyint comment '快速展示【是否展示在介绍上;0-否 1-是】',
  127. primary key (id)
  128. );
  129. alter table pms_product_attr_value comment 'spu属性值';
  130. /*==============================================================*/
  131. /* Table: pms_sku_images */
  132. /*==============================================================*/
  133. create table pms_sku_images
  134. (
  135. id bigint not null auto_increment comment 'id',
  136. sku_id bigint comment 'sku_id',
  137. img_url varchar(255) comment '图片地址',
  138. img_sort int comment '排序',
  139. default_img int comment '默认图[0 - 不是默认图,1 - 是默认图]',
  140. primary key (id)
  141. );
  142. alter table pms_sku_images comment 'sku图片';
  143. /*==============================================================*/
  144. /* Table: pms_sku_info */
  145. /*==============================================================*/
  146. create table pms_sku_info
  147. (
  148. sku_id bigint not null auto_increment comment 'skuId',
  149. spu_id bigint comment 'spuId',
  150. sku_name varchar(255) comment 'sku名称',
  151. sku_desc varchar(2000) comment 'sku介绍描述',
  152. catalog_id bigint comment '所属分类id',
  153. brand_id bigint comment '品牌id',
  154. sku_default_img varchar(255) comment '默认图片',
  155. sku_title varchar(255) comment '标题',
  156. sku_subtitle varchar(2000) comment '副标题',
  157. price decimal(18,4) comment '价格',
  158. sale_count bigint comment '销量',
  159. primary key (sku_id)
  160. );
  161. alter table pms_sku_info comment 'sku信息';
  162. /*==============================================================*/
  163. /* Table: pms_sku_sale_attr_value */
  164. /*==============================================================*/
  165. create table pms_sku_sale_attr_value
  166. (
  167. id bigint not null auto_increment comment 'id',
  168. sku_id bigint comment 'sku_id',
  169. attr_id bigint comment 'attr_id',
  170. attr_name varchar(200) comment '销售属性名',
  171. attr_value varchar(200) comment '销售属性值',
  172. attr_sort int comment '顺序',
  173. primary key (id)
  174. );
  175. alter table pms_sku_sale_attr_value comment 'sku销售属性&值';
  176. /*==============================================================*/
  177. /* Table: pms_spu_comment */
  178. /*==============================================================*/
  179. create table pms_spu_comment
  180. (
  181. id bigint not null auto_increment comment 'id',
  182. sku_id bigint comment 'sku_id',
  183. spu_id bigint comment 'spu_id',
  184. spu_name varchar(255) comment '商品名字',
  185. member_nick_name varchar(255) comment '会员昵称',
  186. star tinyint(1) comment '星级',
  187. member_ip varchar(64) comment '会员ip',
  188. create_time datetime comment '创建时间',
  189. show_status tinyint(1) comment '显示状态[0-不显示,1-显示]',
  190. spu_attributes varchar(255) comment '购买时属性组合',
  191. likes_count int comment '点赞数',
  192. reply_count int comment '回复数',
  193. resources varchar(1000) comment '评论图片/视频[json数据;[{type:文件类型,url:资源路径}]]',
  194. content text comment '内容',
  195. member_icon varchar(255) comment '用户头像',
  196. comment_type tinyint comment '评论类型[0 - 对商品的直接评论,1 - 对评论的回复]',
  197. primary key (id)
  198. );
  199. alter table pms_spu_comment comment '商品评价';
  200. /*==============================================================*/
  201. /* Table: pms_spu_images */
  202. /*==============================================================*/
  203. create table pms_spu_images
  204. (
  205. id bigint not null auto_increment comment 'id',
  206. spu_id bigint comment 'spu_id',
  207. img_name varchar(200) comment '图片名',
  208. img_url varchar(255) comment '图片地址',
  209. img_sort int comment '顺序',
  210. default_img tinyint comment '是否默认图',
  211. primary key (id)
  212. );
  213. alter table pms_spu_images comment 'spu图片';
  214. /*==============================================================*/
  215. /* Table: pms_spu_info */
  216. /*==============================================================*/
  217. create table pms_spu_info
  218. (
  219. id bigint not null auto_increment comment '商品id',
  220. spu_name varchar(200) comment '商品名称',
  221. spu_description varchar(1000) comment '商品描述',
  222. catalog_id bigint comment '所属分类id',
  223. brand_id bigint comment '品牌id',
  224. weight decimal(18,4),
  225. publish_status tinyint comment '上架状态[0 - 下架,1 - 上架]',
  226. create_time datetime,
  227. update_time datetime,
  228. primary key (id)
  229. );
  230. alter table pms_spu_info comment 'spu信息';
  231. /*==============================================================*/
  232. /* Table: pms_spu_info_desc */
  233. /*==============================================================*/
  234. create table pms_spu_info_desc
  235. (
  236. spu_id bigint not null comment '商品id',
  237. decript longtext comment '商品介绍',
  238. primary key (spu_id)
  239. );
  240. alter table pms_spu_info_desc comment 'spu信息介绍';

3、mall-sms

  1. drop table if exists sms_coupon;
  2. drop table if exists sms_coupon_history;
  3. drop table if exists sms_coupon_spu_category_relation;
  4. drop table if exists sms_coupon_spu_relation;
  5. drop table if exists sms_home_adv;
  6. drop table if exists sms_home_subject;
  7. drop table if exists sms_home_subject_spu;
  8. drop table if exists sms_member_price;
  9. drop table if exists sms_seckill_promotion;
  10. drop table if exists sms_seckill_session;
  11. drop table if exists sms_seckill_sku_notice;
  12. drop table if exists sms_seckill_sku_relation;
  13. drop table if exists sms_sku_full_reduction;
  14. drop table if exists sms_sku_ladder;
  15. drop table if exists sms_spu_bounds;
  16. /*==============================================================*/
  17. /* Table: sms_coupon */
  18. /*==============================================================*/
  19. create table sms_coupon
  20. (
  21. id bigint not null auto_increment comment 'id',
  22. coupon_type tinyint(1) comment '优惠卷类型[0->全场赠券;1->会员赠券;2->购物赠券;3->注册赠券]',
  23. coupon_img varchar(2000) comment '优惠券图片',
  24. coupon_name varchar(100) comment '优惠卷名字',
  25. num int comment '数量',
  26. amount decimal(18,4) comment '金额',
  27. per_limit int comment '每人限领张数',
  28. min_point decimal(18,4) comment '使用门槛',
  29. start_time datetime comment '开始时间',
  30. end_time datetime comment '结束时间',
  31. use_type tinyint(1) comment '使用类型[0->全场通用;1->指定分类;2->指定商品]',
  32. note varchar(200) comment '备注',
  33. publish_count int(11) comment '发行数量',
  34. use_count int(11) comment '已使用数量',
  35. receive_count int(11) comment '领取数量',
  36. enable_start_time datetime comment '可以领取的开始日期',
  37. enable_end_time datetime comment '可以领取的结束日期',
  38. code varchar(64) comment '优惠码',
  39. member_level tinyint(1) comment '可以领取的会员等级[0->不限等级,其他-对应等级]',
  40. publish tinyint(1) comment '发布状态[0-未发布,1-已发布]',
  41. primary key (id)
  42. );
  43. alter table sms_coupon comment '优惠券信息';
  44. /*==============================================================*/
  45. /* Table: sms_coupon_history */
  46. /*==============================================================*/
  47. create table sms_coupon_history
  48. (
  49. id bigint not null auto_increment comment 'id',
  50. coupon_id bigint comment '优惠券id',
  51. member_id bigint comment '会员id',
  52. member_nick_name varchar(64) comment '会员名字',
  53. get_type tinyint(1) comment '获取方式[0->后台赠送;1->主动领取]',
  54. create_time datetime comment '创建时间',
  55. use_type tinyint(1) comment '使用状态[0->未使用;1->已使用;2->已过期]',
  56. use_time datetime comment '使用时间',
  57. order_id bigint comment '订单id',
  58. order_sn bigint comment '订单号',
  59. primary key (id)
  60. );
  61. alter table sms_coupon_history comment '优惠券领取历史记录';
  62. /*==============================================================*/
  63. /* Table: sms_coupon_spu_category_relation */
  64. /*==============================================================*/
  65. create table sms_coupon_spu_category_relation
  66. (
  67. id bigint not null auto_increment comment 'id',
  68. coupon_id bigint comment '优惠券id',
  69. category_id bigint comment '产品分类id',
  70. category_name varchar(64) comment '产品分类名称',
  71. primary key (id)
  72. );
  73. alter table sms_coupon_spu_category_relation comment '优惠券分类关联';
  74. /*==============================================================*/
  75. /* Table: sms_coupon_spu_relation */
  76. /*==============================================================*/
  77. create table sms_coupon_spu_relation
  78. (
  79. id bigint not null auto_increment comment 'id',
  80. coupon_id bigint comment '优惠券id',
  81. spu_id bigint comment 'spu_id',
  82. spu_name varchar(255) comment 'spu_name',
  83. primary key (id)
  84. );
  85. alter table sms_coupon_spu_relation comment '优惠券与产品关联';
  86. /*==============================================================*/
  87. /* Table: sms_home_adv */
  88. /*==============================================================*/
  89. create table sms_home_adv
  90. (
  91. id bigint not null auto_increment comment 'id',
  92. name varchar(100) comment '名字',
  93. pic varchar(500) comment '图片地址',
  94. start_time datetime comment '开始时间',
  95. end_time datetime comment '结束时间',
  96. status tinyint(1) comment '状态',
  97. click_count int comment '点击数',
  98. url varchar(500) comment '广告详情连接地址',
  99. note varchar(500) comment '备注',
  100. sort int comment '排序',
  101. publisher_id bigint comment '发布者',
  102. auth_id bigint comment '审核者',
  103. primary key (id)
  104. );
  105. alter table sms_home_adv comment '首页轮播广告';
  106. /*==============================================================*/
  107. /* Table: sms_home_subject */
  108. /*==============================================================*/
  109. create table sms_home_subject
  110. (
  111. id bigint not null auto_increment comment 'id',
  112. name varchar(200) comment '专题名字',
  113. title varchar(255) comment '专题标题',
  114. sub_title varchar(255) comment '专题副标题',
  115. status tinyint(1) comment '显示状态',
  116. url varchar(500) comment '详情连接',
  117. sort int comment '排序',
  118. img varchar(500) comment '专题图片地址',
  119. primary key (id)
  120. );
  121. alter table sms_home_subject comment '首页专题表【jd首页下面很多专题,每个专题链接新的页面,展示专题商品信息】';
  122. /*==============================================================*/
  123. /* Table: sms_home_subject_spu */
  124. /*==============================================================*/
  125. create table sms_home_subject_spu
  126. (
  127. id bigint not null auto_increment comment 'id',
  128. name varchar(200) comment '专题名字',
  129. subject_id bigint comment '专题id',
  130. spu_id bigint comment 'spu_id',
  131. sort int comment '排序',
  132. primary key (id)
  133. );
  134. alter table sms_home_subject_spu comment '专题商品';
  135. /*==============================================================*/
  136. /* Table: sms_member_price */
  137. /*==============================================================*/
  138. create table sms_member_price
  139. (
  140. id bigint not null auto_increment comment 'id',
  141. sku_id bigint comment 'sku_id',
  142. member_level_id bigint comment '会员等级id',
  143. member_level_name varchar(100) comment '会员等级名',
  144. member_price decimal(18,4) comment '会员对应价格',
  145. add_other tinyint(1) comment '可否叠加其他优惠[0-不可叠加优惠,1-可叠加]',
  146. primary key (id)
  147. );
  148. alter table sms_member_price comment '商品会员价格';
  149. /*==============================================================*/
  150. /* Table: sms_seckill_promotion */
  151. /*==============================================================*/
  152. create table sms_seckill_promotion
  153. (
  154. id bigint not null auto_increment comment 'id',
  155. title varchar(255) comment '活动标题',
  156. start_time datetime comment '开始日期',
  157. end_time datetime comment '结束日期',
  158. status tinyint comment '上下线状态',
  159. create_time datetime comment '创建时间',
  160. user_id bigint comment '创建人',
  161. primary key (id)
  162. );
  163. alter table sms_seckill_promotion comment '秒杀活动';
  164. /*==============================================================*/
  165. /* Table: sms_seckill_session */
  166. /*==============================================================*/
  167. create table sms_seckill_session
  168. (
  169. id bigint not null auto_increment comment 'id',
  170. name varchar(200) comment '场次名称',
  171. start_time datetime comment '每日开始时间',
  172. end_time datetime comment '每日结束时间',
  173. status tinyint(1) comment '启用状态',
  174. create_time datetime comment '创建时间',
  175. primary key (id)
  176. );
  177. alter table sms_seckill_session comment '秒杀活动场次';
  178. /*==============================================================*/
  179. /* Table: sms_seckill_sku_notice */
  180. /*==============================================================*/
  181. create table sms_seckill_sku_notice
  182. (
  183. id bigint not null auto_increment comment 'id',
  184. member_id bigint comment 'member_id',
  185. sku_id bigint comment 'sku_id',
  186. session_id bigint comment '活动场次id',
  187. subcribe_time datetime comment '订阅时间',
  188. send_time datetime comment '发送时间',
  189. notice_type tinyint(1) comment '通知方式[0-短信,1-邮件]',
  190. primary key (id)
  191. );
  192. alter table sms_seckill_sku_notice comment '秒杀商品通知订阅';
  193. /*==============================================================*/
  194. /* Table: sms_seckill_sku_relation */
  195. /*==============================================================*/
  196. create table sms_seckill_sku_relation
  197. (
  198. id bigint not null auto_increment comment 'id',
  199. promotion_id bigint comment '活动id',
  200. promotion_session_id bigint comment '活动场次id',
  201. sku_id bigint comment '商品id',
  202. seckill_price decimal comment '秒杀价格',
  203. seckill_count decimal comment '秒杀总量',
  204. seckill_limit decimal comment '每人限购数量',
  205. seckill_sort int comment '排序',
  206. primary key (id)
  207. );
  208. alter table sms_seckill_sku_relation comment '秒杀活动商品关联';
  209. /*==============================================================*/
  210. /* Table: sms_sku_full_reduction */
  211. /*==============================================================*/
  212. create table sms_sku_full_reduction
  213. (
  214. id bigint not null auto_increment comment 'id',
  215. sku_id bigint comment 'spu_id',
  216. full_price decimal(18,4) comment '满多少',
  217. reduce_price decimal(18,4) comment '减多少',
  218. add_other tinyint(1) comment '是否参与其他优惠',
  219. primary key (id)
  220. );
  221. alter table sms_sku_full_reduction comment '商品满减信息';
  222. /*==============================================================*/
  223. /* Table: sms_sku_ladder */
  224. /*==============================================================*/
  225. create table sms_sku_ladder
  226. (
  227. id bigint not null auto_increment comment 'id',
  228. sku_id bigint comment 'spu_id',
  229. full_count int comment '满几件',
  230. discount decimal(4,2) comment '打几折',
  231. price decimal(18,4) comment '折后价',
  232. add_other tinyint(1) comment '是否叠加其他优惠[0-不可叠加,1-可叠加]',
  233. primary key (id)
  234. );
  235. alter table sms_sku_ladder comment '商品阶梯价格';
  236. /*==============================================================*/
  237. /* Table: sms_spu_bounds */
  238. /*==============================================================*/
  239. create table sms_spu_bounds
  240. (
  241. id bigint not null auto_increment comment 'id',
  242. spu_id bigint,
  243. grow_bounds decimal(18,4) comment '成长积分',
  244. buy_bounds decimal(18,4) comment '购物积分',
  245. work tinyint(1) comment '优惠生效情况[1111(四个状态位,从右到左);0 - 无优惠,成长积分是否赠送;1 - 无优惠,购物积分是否赠送;2 - 有优惠,成长积分是否赠送;3 - 有优惠,购物积分是否赠送【状态位0:不赠送,1:赠送】]',
  246. primary key (id)
  247. );
  248. alter table sms_spu_bounds comment '商品spu积分设置';

4、mall-ums

  1. drop table if exists ums_growth_change_history;
  2. drop table if exists ums_integration_change_history;
  3. drop table if exists ums_member;
  4. drop table if exists ums_member_collect_spu;
  5. drop table if exists ums_member_collect_subject;
  6. drop table if exists ums_member_level;
  7. drop table if exists ums_member_login_log;
  8. drop table if exists ums_member_receive_address;
  9. drop table if exists ums_member_statistics_info;
  10. /*==============================================================*/
  11. /* Table: ums_growth_change_history */
  12. /*==============================================================*/
  13. create table ums_growth_change_history
  14. (
  15. id bigint not null auto_increment comment 'id',
  16. member_id bigint comment 'member_id',
  17. create_time datetime comment 'create_time',
  18. change_count int comment '改变的值(正负计数)',
  19. note varchar(0) comment '备注',
  20. source_type tinyint comment '积分来源[0-购物,1-管理员修改]',
  21. primary key (id)
  22. );
  23. alter table ums_growth_change_history comment '成长值变化历史记录';
  24. /*==============================================================*/
  25. /* Table: ums_integration_change_history */
  26. /*==============================================================*/
  27. create table ums_integration_change_history
  28. (
  29. id bigint not null auto_increment comment 'id',
  30. member_id bigint comment 'member_id',
  31. create_time datetime comment 'create_time',
  32. change_count int comment '变化的值',
  33. note varchar(255) comment '备注',
  34. source_tyoe tinyint comment '来源[0->购物;1->管理员修改;2->活动]',
  35. primary key (id)
  36. );
  37. alter table ums_integration_change_history comment '积分变化历史记录';
  38. /*==============================================================*/
  39. /* Table: ums_member */
  40. /*==============================================================*/
  41. create table ums_member
  42. (
  43. id bigint not null auto_increment comment 'id',
  44. level_id bigint comment '会员等级id',
  45. username char(64) comment '用户名',
  46. password varchar(64) comment '密码',
  47. nickname varchar(64) comment '昵称',
  48. mobile varchar(20) comment '手机号码',
  49. email varchar(64) comment '邮箱',
  50. header varchar(500) comment '头像',
  51. gender tinyint comment '性别',
  52. birth date comment '生日',
  53. city varchar(500) comment '所在城市',
  54. job varchar(255) comment '职业',
  55. sign varchar(255) comment '个性签名',
  56. source_type tinyint comment '用户来源',
  57. integration int comment '积分',
  58. growth int comment '成长值',
  59. status tinyint comment '启用状态',
  60. create_time datetime comment '注册时间',
  61. primary key (id)
  62. );
  63. alter table ums_member comment '会员';
  64. /*==============================================================*/
  65. /* Table: ums_member_collect_spu */
  66. /*==============================================================*/
  67. create table ums_member_collect_spu
  68. (
  69. id bigint not null comment 'id',
  70. member_id bigint comment '会员id',
  71. spu_id bigint comment 'spu_id',
  72. spu_name varchar(500) comment 'spu_name',
  73. spu_img varchar(500) comment 'spu_img',
  74. create_time datetime comment 'create_time',
  75. primary key (id)
  76. );
  77. alter table ums_member_collect_spu comment '会员收藏的商品';
  78. /*==============================================================*/
  79. /* Table: ums_member_collect_subject */
  80. /*==============================================================*/
  81. create table ums_member_collect_subject
  82. (
  83. id bigint not null auto_increment comment 'id',
  84. subject_id bigint comment 'subject_id',
  85. subject_name varchar(255) comment 'subject_name',
  86. subject_img varchar(500) comment 'subject_img',
  87. subject_urll varchar(500) comment '活动url',
  88. primary key (id)
  89. );
  90. alter table ums_member_collect_subject comment '会员收藏的专题活动';
  91. /*==============================================================*/
  92. /* Table: ums_member_level */
  93. /*==============================================================*/
  94. create table ums_member_level
  95. (
  96. id bigint not null auto_increment comment 'id',
  97. name varchar(100) comment '等级名称',
  98. growth_point int comment '等级需要的成长值',
  99. default_status tinyint comment '是否为默认等级[0->不是;1->是]',
  100. free_freight_point decimal(18,4) comment '免运费标准',
  101. comment_growth_point int comment '每次评价获取的成长值',
  102. priviledge_free_freight tinyint comment '是否有免邮特权',
  103. priviledge_member_price tinyint comment '是否有会员价格特权',
  104. priviledge_birthday tinyint comment '是否有生日特权',
  105. note varchar(255) comment '备注',
  106. primary key (id)
  107. );
  108. alter table ums_member_level comment '会员等级';
  109. /*==============================================================*/
  110. /* Table: ums_member_login_log */
  111. /*==============================================================*/
  112. create table ums_member_login_log
  113. (
  114. id bigint not null auto_increment comment 'id',
  115. member_id bigint comment 'member_id',
  116. create_time datetime comment '创建时间',
  117. ip varchar(64) comment 'ip',
  118. city varchar(64) comment 'city',
  119. login_type tinyint(1) comment '登录类型[1-web,2-app]',
  120. primary key (id)
  121. );
  122. alter table ums_member_login_log comment '会员登录记录';
  123. /*==============================================================*/
  124. /* Table: ums_member_receive_address */
  125. /*==============================================================*/
  126. create table ums_member_receive_address
  127. (
  128. id bigint not null auto_increment comment 'id',
  129. member_id bigint comment 'member_id',
  130. name varchar(255) comment '收货人姓名',
  131. phone varchar(64) comment '电话',
  132. post_code varchar(64) comment '邮政编码',
  133. province varchar(100) comment '省份/直辖市',
  134. city varchar(100) comment '城市',
  135. region varchar(100) comment '区',
  136. detail_address varchar(255) comment '详细地址(街道)',
  137. areacode varchar(15) comment '省市区代码',
  138. default_status tinyint(1) comment '是否默认',
  139. primary key (id)
  140. );
  141. alter table ums_member_receive_address comment '会员收货地址';
  142. /*==============================================================*/
  143. /* Table: ums_member_statistics_info */
  144. /*==============================================================*/
  145. create table ums_member_statistics_info
  146. (
  147. id bigint not null auto_increment comment 'id',
  148. member_id bigint comment '会员id',
  149. consume_amount decimal(18,4) comment '累计消费金额',
  150. coupon_amount decimal(18,4) comment '累计优惠金额',
  151. order_count int comment '订单数量',
  152. coupon_count int comment '优惠券数量',
  153. comment_count int comment '评价数',
  154. return_order_count int comment '退货数量',
  155. login_count int comment '登录次数',
  156. attend_count int comment '关注数量',
  157. fans_count int comment '粉丝数量',
  158. collect_product_count int comment '收藏的商品数量',
  159. collect_subject_count int comment '收藏的专题活动数量',
  160. collect_comment_count int comment '收藏的评论数量',
  161. invite_friend_count int comment '邀请的朋友数量',
  162. primary key (id)
  163. );
  164. alter table ums_member_statistics_info comment '会员统计信息';

5、mall-wms

  1. /*
  2. SQLyog Ultimate v11.25 (64 bit)
  3. MySQL - 5.7.27 : Database - gulimall_wms
  4. *********************************************************************
  5. */
  6. /*!40101 SET NAMES utf8 */;
  7. /*!40101 SET SQL_MODE=''*/;
  8. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  9. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  10. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  11. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  12. CREATE DATABASE /*!32312 IF NOT EXISTS*/`gulimall_wms` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
  13. USE `gulimall_wms`;
  14. /*Table structure for table `undo_log` */
  15. DROP TABLE IF EXISTS `undo_log`;
  16. CREATE TABLE `undo_log` (
  17. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  18. `branch_id` bigint(20) NOT NULL,
  19. `xid` varchar(100) NOT NULL,
  20. `context` varchar(128) NOT NULL,
  21. `rollback_info` longblob NOT NULL,
  22. `log_status` int(11) NOT NULL,
  23. `log_created` datetime NOT NULL,
  24. `log_modified` datetime NOT NULL,
  25. `ext` varchar(100) DEFAULT NULL,
  26. PRIMARY KEY (`id`),
  27. UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`) USING BTREE
  28. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  29. /*Data for the table `undo_log` */
  30. /*Table structure for table `wms_purchase` */
  31. DROP TABLE IF EXISTS `wms_purchase`;
  32. CREATE TABLE `wms_purchase` (
  33. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  34. `assignee_id` bigint(20) DEFAULT NULL,
  35. `assignee_name` varchar(255) DEFAULT NULL,
  36. `phone` char(13) DEFAULT NULL,
  37. `priority` int(4) DEFAULT NULL,
  38. `status` int(4) DEFAULT NULL,
  39. `ware_id` bigint(20) DEFAULT NULL,
  40. `amount` decimal(18,4) DEFAULT NULL,
  41. `create_time` datetime DEFAULT NULL,
  42. `update_time` datetime DEFAULT NULL,
  43. PRIMARY KEY (`id`)
  44. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='采购信息';
  45. /*Data for the table `wms_purchase` */
  46. /*Table structure for table `wms_purchase_detail` */
  47. DROP TABLE IF EXISTS `wms_purchase_detail`;
  48. CREATE TABLE `wms_purchase_detail` (
  49. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  50. `purchase_id` bigint(20) DEFAULT NULL COMMENT '采购单id',
  51. `sku_id` bigint(20) DEFAULT NULL COMMENT '采购商品id',
  52. `sku_num` int(11) DEFAULT NULL COMMENT '采购数量',
  53. `sku_price` decimal(18,4) DEFAULT NULL COMMENT '采购金额',
  54. `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  55. `status` int(11) DEFAULT NULL COMMENT '状态[0新建,1已分配,2正在采购,3已完成,4采购失败]',
  56. PRIMARY KEY (`id`)
  57. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  58. /*Data for the table `wms_purchase_detail` */
  59. /*Table structure for table `wms_ware_info` */
  60. DROP TABLE IF EXISTS `wms_ware_info`;
  61. CREATE TABLE `wms_ware_info` (
  62. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  63. `name` varchar(255) DEFAULT NULL COMMENT '仓库名',
  64. `address` varchar(255) DEFAULT NULL COMMENT '仓库地址',
  65. `areacode` varchar(20) DEFAULT NULL COMMENT '区域编码',
  66. PRIMARY KEY (`id`)
  67. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='仓库信息';
  68. /*Data for the table `wms_ware_info` */
  69. /*Table structure for table `wms_ware_order_task` */
  70. DROP TABLE IF EXISTS `wms_ware_order_task`;
  71. CREATE TABLE `wms_ware_order_task` (
  72. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  73. `order_id` bigint(20) DEFAULT NULL COMMENT 'order_id',
  74. `order_sn` varchar(255) DEFAULT NULL COMMENT 'order_sn',
  75. `consignee` varchar(100) DEFAULT NULL COMMENT '收货人',
  76. `consignee_tel` char(15) DEFAULT NULL COMMENT '收货人电话',
  77. `delivery_address` varchar(500) DEFAULT NULL COMMENT '配送地址',
  78. `order_comment` varchar(200) DEFAULT NULL COMMENT '订单备注',
  79. `payment_way` tinyint(1) DEFAULT NULL COMMENT '付款方式【 1:在线付款 2:货到付款】',
  80. `task_status` tinyint(2) DEFAULT NULL COMMENT '任务状态',
  81. `order_body` varchar(255) DEFAULT NULL COMMENT '订单描述',
  82. `tracking_no` char(30) DEFAULT NULL COMMENT '物流单号',
  83. `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  84. `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  85. `task_comment` varchar(500) DEFAULT NULL COMMENT '工作单备注',
  86. PRIMARY KEY (`id`)
  87. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='库存工作单';
  88. /*Data for the table `wms_ware_order_task` */
  89. /*Table structure for table `wms_ware_order_task_detail` */
  90. DROP TABLE IF EXISTS `wms_ware_order_task_detail`;
  91. CREATE TABLE `wms_ware_order_task_detail` (
  92. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  93. `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  94. `sku_name` varchar(255) DEFAULT NULL COMMENT 'sku_name',
  95. `sku_num` int(11) DEFAULT NULL COMMENT '购买个数',
  96. `task_id` bigint(20) DEFAULT NULL COMMENT '工作单id',
  97. `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  98. `lock_status` int(1) DEFAULT NULL COMMENT '1-已锁定 2-已解锁 3-扣减',
  99. PRIMARY KEY (`id`)
  100. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='库存工作单';
  101. /*Data for the table `wms_ware_order_task_detail` */
  102. /*Table structure for table `wms_ware_sku` */
  103. DROP TABLE IF EXISTS `wms_ware_sku`;
  104. CREATE TABLE `wms_ware_sku` (
  105. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  106. `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  107. `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  108. `stock` int(11) DEFAULT NULL COMMENT '库存数',
  109. `sku_name` varchar(200) DEFAULT NULL COMMENT 'sku_name',
  110. `stock_locked` int(11) DEFAULT '0' COMMENT '锁定库存',
  111. PRIMARY KEY (`id`),
  112. KEY `sku_id` (`sku_id`) USING BTREE,
  113. KEY `ware_id` (`ware_id`) USING BTREE
  114. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品库存';
  115. /*Data for the table `wms_ware_sku` */
  116. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  117. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  118. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  119. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;