33分账设置.sql 891 B

1234567891011121314151617181920
  1. -- Active: xiaoding_test@@192.168.110.85@3306@xiaoding_test
  2. /* 查询所有区域的分账配置信息 */
  3. SELECT
  4. area_name /* 区域名称 */,
  5. channel_level1_ratio /* 渠道一级分账百分比 */,
  6. channel_level2_ratio /* 渠道二级分账百分比 */,
  7. shop_ratio /* 店铺分账百分比 */,
  8. agent_ratio /* 代理商分账百分比 */,
  9. saas_ratio /* saas分账百分比 */,
  10. shop_entry_fee /* 店铺入驻费 */,
  11. member_agent_ratio /* 开通会员代理商分账百分比 */,
  12. platform_order_ratio /* 平台订单分账百分比 */,
  13. platform_shop_order_ratio /* 平台店铺订单分账百分比 */,
  14. platform_shop_emergency_ratio /* 平台店铺应急订单百分比 */,
  15. market_fund_ratio /* 市场经费分账百分比 */
  16. FROM t_account_ratio acr /* 分账比例配置表 */
  17. WHERE
  18. acr.area_name = '深圳'
  19. ORDER BY acr.create_time DESC;