brokerage.sql 15 KB

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