brokerage.sql 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. -- 增加配置表
  2. create table trade_config
  3. (
  4. id bigint auto_increment comment '自增主键' primary key,
  5. brokerage_enabled bit default 1 not null comment '是否启用分佣',
  6. brokerage_enabled_condition tinyint default 0 not null comment '分佣模式:1-人人分销 2-指定分销',
  7. brokerage_bind_mode tinyint default 0 not null comment '分销关系绑定模式: 1-没有推广人,2-新用户, 3-扫码覆盖',
  8. brokerage_post_urls varchar(2000) default '' null comment '分销海报图地址数组',
  9. brokerage_first_percent int default 0 not null comment '一级返佣比例',
  10. brokerage_second_percent int default 0 not null comment '二级返佣比例',
  11. brokerage_withdraw_min_price int default 0 not null comment '用户提现最低金额',
  12. brokerage_bank_names varchar(200) default '' not null comment '提现银行(字典类型=brokerage_bank_name)',
  13. brokerage_frozen_days int default 7 not null comment '佣金冻结时间(天)',
  14. brokerage_withdraw_type varchar(32) default '1,2,3,4' not null comment '提现方式:1-钱包;2-银行卡;3-微信;4-支付宝',
  15. creator varchar(64) collate utf8mb4_unicode_ci default '' null comment '创建者',
  16. create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
  17. updater varchar(64) collate utf8mb4_unicode_ci default '' null comment '更新者',
  18. update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
  19. deleted bit default b'0' not null comment '是否删除',
  20. tenant_id bigint default 0 not null comment '租户编号'
  21. ) comment '交易中心配置';
  22. -- 增加分销用户扩展表
  23. create table trade_brokerage_user
  24. (
  25. id bigint auto_increment comment '用户编号' primary key,
  26. bind_user_id bigint null comment '推广员编号',
  27. bind_user_time datetime null comment '推广员绑定时间',
  28. brokerage_enabled bit default 1 not null comment '是否成为推广员',
  29. brokerage_time datetime null comment '成为分销员时间',
  30. price int default 0 not null comment '可用佣金',
  31. frozen_price int default 0 not null comment '冻结佣金',
  32. creator varchar(64) collate utf8mb4_unicode_ci default '' null comment '创建者',
  33. create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
  34. updater varchar(64) collate utf8mb4_unicode_ci default '' null comment '更新者',
  35. update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
  36. deleted bit default b'0' not null comment '是否删除',
  37. tenant_id bigint default 0 not null comment '租户编号'
  38. ) comment '分销用户';
  39. create index idx_invite_user_id on trade_brokerage_user (bind_user_id) comment '推广员编号';
  40. create index idx_agent on trade_brokerage_user (brokerage_enabled) comment '是否成为推广员';
  41. create table trade_brokerage_record
  42. (
  43. id int auto_increment comment '编号'
  44. primary key,
  45. user_id bigint not null comment '用户编号',
  46. biz_id varchar(64) default '' not null comment '业务编号',
  47. biz_type tinyint default 0 not null comment '业务类型:0-订单,1-提现',
  48. title varchar(64) default '' not null comment '标题',
  49. price int default 0 not null comment '金额',
  50. total_price int default 0 not null comment '当前总佣金',
  51. description varchar(500) default '' not null comment '说明',
  52. status tinyint default 0 not null comment '状态:0-待结算,1-已结算,2-已取消',
  53. frozen_days int default 0 not null comment '冻结时间(天)',
  54. unfreeze_time datetime null comment '解冻时间',
  55. creator varchar(64) collate utf8mb4_general_ci default '' null comment '创建者',
  56. create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
  57. updater varchar(64) collate utf8mb4_general_ci default '' null comment '更新者',
  58. update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
  59. deleted bit default b'0' not null comment '是否删除',
  60. tenant_id bigint default 0 not null comment '租户编号'
  61. )
  62. comment '佣金记录';
  63. create index idx_user_id on trade_brokerage_record (user_id) comment '用户编号';
  64. create index idx_biz on trade_brokerage_record (biz_type, biz_id) comment '业务';
  65. create index idx_status on trade_brokerage_record (status) comment '状态';
  66. create table trade_brokerage_withdraw
  67. (
  68. id int auto_increment comment '编号'
  69. primary key,
  70. user_id bigint not null comment '用户编号',
  71. price int default 0 not null comment '提现金额',
  72. fee_price int default 0 not null comment '提现手续费',
  73. total_price int default 0 not null comment '当前总佣金',
  74. type tinyint default 0 not null comment '提现类型:1-钱包;2-银行卡;3-微信;4-支付宝',
  75. name varchar(64) null comment '真实姓名',
  76. account_no varchar(64) null comment '账号',
  77. bank_name varchar(100) null comment '银行名称',
  78. bank_address varchar(200) null comment '开户地址',
  79. account_qr_code_url varchar(512) null comment '收款码',
  80. status tinyint(2) default 0 not null comment '状态:0-审核中,10-审核通过 20-审核不通过;预留:11 - 提现成功;21-提现失败',
  81. audit_reason varchar(128) null comment '审核驳回原因',
  82. audit_time datetime null comment '审核时间',
  83. remark varchar(500) null comment '备注',
  84. creator varchar(64) collate utf8mb4_general_ci default '' null comment '创建者',
  85. create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
  86. updater varchar(64) collate utf8mb4_general_ci default '' null comment '更新者',
  87. update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
  88. deleted bit default b'0' not null comment '是否删除',
  89. tenant_id bigint default 0 not null comment '租户编号'
  90. )
  91. comment '佣金提现';
  92. create index idx_user_id on trade_brokerage_withdraw (user_id) comment '用户编号';
  93. create index idx_audit_status on trade_brokerage_withdraw (status) comment '状态';
  94. -- 增加字典
  95. insert into system_dict_type(type, name)
  96. values ('brokerage_enabled_condition', '分佣模式');
  97. insert into system_dict_data(dict_type, label, value, sort, remark)
  98. values ('brokerage_enabled_condition', '人人分销', 1, 1, '所有用户都可以分销'),
  99. ('brokerage_enabled_condition', '指定分销', 2, 2, '仅可后台手动设置推广员');
  100. insert into system_dict_type(type, name)
  101. values ('brokerage_bind_mode', '分销关系绑定模式');
  102. insert into system_dict_data(dict_type, label, value, sort, remark)
  103. values ('brokerage_bind_mode', '没有推广人', 1, 1, '只要用户没有推广人,随时都可以绑定推广关系'),
  104. ('brokerage_bind_mode', '新用户', 2, 2, '仅新用户注册时才能绑定推广关系'),
  105. ('brokerage_bind_mode', '扫码覆盖', 3, 3, '如果用户已经有推广人,推广人会被变更');
  106. insert into system_dict_type(type, name)
  107. values ('brokerage_withdraw_type', '佣金提现类型');
  108. insert into system_dict_data(dict_type, label, value, sort)
  109. values ('brokerage_withdraw_type', '钱包', 1, 1),
  110. ('brokerage_withdraw_type', '银行卡', 2, 2),
  111. ('brokerage_withdraw_type', '微信', 3, 3),
  112. ('brokerage_withdraw_type', '支付宝', 4, 4);
  113. insert into system_dict_type(type, name)
  114. values ('brokerage_record_biz_type', '佣金记录业务类型');
  115. insert into system_dict_data(dict_type, label, value, sort)
  116. values ('brokerage_record_biz_type', '订单返佣', 1, 1),
  117. ('brokerage_record_biz_type', '申请提现', 2, 2);
  118. insert into system_dict_type(type, name)
  119. values ('brokerage_record_status', '佣金记录状态');
  120. insert into system_dict_data(dict_type, label, value, sort)
  121. values ('brokerage_record_status', '待结算', 0, 0),
  122. ('brokerage_record_status', '已结算', 1, 1),
  123. ('brokerage_record_status', '已取消', 2, 2);
  124. insert into system_dict_type(type, name)
  125. values ('brokerage_withdraw_status', '佣金提现状态');
  126. insert into system_dict_data(dict_type, label, value, sort)
  127. values ('brokerage_withdraw_status', '审核中', 0, 0),
  128. ('brokerage_withdraw_status', '审核通过', 10, 10),
  129. ('brokerage_withdraw_status', '提现成功', 11, 11),
  130. ('brokerage_withdraw_status', '审核不通过', 20, 20),
  131. ('brokerage_withdraw_status', '提现失败', 21, 21);
  132. insert into system_dict_type(type, name)
  133. values ('brokerage_bank_name', '佣金提现银行');
  134. insert into system_dict_data(dict_type, label, value, sort)
  135. values ('brokerage_bank_name', '工商银行', 0, 0),
  136. ('brokerage_bank_name', '建设银行', 1, 1),
  137. ('brokerage_bank_name', '农业银行', 2, 2),
  138. ('brokerage_bank_name', '中国银行', 3, 3),
  139. ('brokerage_bank_name', '交通银行', 4, 4),
  140. ('brokerage_bank_name', '招商银行', 5, 5);
  141. -- 交易中心配置:菜单 SQL
  142. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status, component_name)
  143. VALUES ('交易中心配置', '', 2, 0, 2072, 'config', 'ep:setting', 'trade/config/index', 0, 'TradeConfig');
  144. -- 按钮父菜单ID
  145. -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
  146. SELECT @parentId := LAST_INSERT_ID();
  147. -- 按钮 SQL
  148. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  149. VALUES ('交易中心配置查询', 'trade:config:query', 3, 1, @parentId, '', '', '', 0);
  150. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  151. VALUES ('交易中心配置保存', 'trade:config:save', 3, 2, @parentId, '', '', '', 0);
  152. -- 增加菜单:分销
  153. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status, component_name)
  154. VALUES ('分销', '', 1, 5, 2072, 'brokerage', 'fa-solid:project-diagram', '', 0, '');
  155. -- 按钮父菜单ID
  156. SELECT @brokerageMenuId := LAST_INSERT_ID();
  157. -- 增加菜单:分销员
  158. -- 菜单 SQL
  159. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status, component_name)
  160. VALUES ('分销用户', '', 2, 0, @brokerageMenuId, 'brokerage-user', 'fa-solid:user-tie', 'trade/brokerage/user/index', 0,
  161. 'TradeBrokerageUser');
  162. -- 按钮父菜单ID
  163. -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
  164. SELECT @parentId := LAST_INSERT_ID();
  165. -- 按钮 SQL
  166. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  167. VALUES ('分销用户查询', 'trade:brokerage-user:query', 3, 1, @parentId, '', '', '', 0);
  168. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  169. VALUES ('分销用户推广人查询', 'trade:brokerage-user:user-query', 3, 2, @parentId, '', '', '', 0);
  170. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  171. VALUES ('分销用户推广订单查询', 'trade:brokerage-user:order-query', 3, 3, @parentId, '', '', '', 0);
  172. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  173. VALUES ('分销用户修改推广资格', 'trade:brokerage-user:update-brokerage-enable', 3, 4, @parentId, '', '', '', 0);
  174. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  175. VALUES ('分销用户修改推广员', 'trade:brokerage-user:update-brokerage-user', 3, 5, @parentId, '', '', '', 0);
  176. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  177. VALUES ('分销用户清除推广员', 'trade:brokerage-user:clear-brokerage-user', 3, 6, @parentId, '', '', '', 0);
  178. -- 增加菜单:佣金记录
  179. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status, component_name)
  180. VALUES ('佣金记录', '', 2, 1, @brokerageMenuId, 'brokerage-record', 'fa:money', 'trade/brokerage/record/index', 0,
  181. 'TradeBrokerageRecord');
  182. -- 按钮父菜单ID
  183. -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
  184. SELECT @parentId := LAST_INSERT_ID();
  185. -- 按钮 SQL
  186. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  187. VALUES ('佣金记录查询', 'trade:brokerage-record:query', 3, 1, @parentId, '', '', '', 0);
  188. -- 增加菜单:佣金提现
  189. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status, component_name)
  190. VALUES ('佣金提现', '', 2, 2, @brokerageMenuId, 'brokerage-withdraw', 'fa:credit-card',
  191. 'trade/brokerage/withdraw/index', 0, 'TradeBrokerageWithdraw');
  192. -- 按钮父菜单ID
  193. -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
  194. SELECT @parentId := LAST_INSERT_ID();
  195. -- 按钮 SQL
  196. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  197. VALUES ('佣金提现查询', 'trade:brokerage-withdraw:query', 3, 1, @parentId, '', '', '', 0);
  198. INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
  199. VALUES ('佣金提现审核', 'trade:brokerage-withdraw:audit', 3, 2, @parentId, '', '', '', 0);