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