1234567891011121314151617181920212223 |
- -- Active: xiaoding_test@@192.168.110.85@3306@xiaoding_test
- /* 查询技师区域设置信息 */
- SELECT
- area_code /* 区域编码 */,
- area_name /* 区域名称 */,
- quota /* 区域名额 */,
- five_star_condition /* 技师五星条件 */,
- order_reward_percentage /* 接单奖百分比 */,
- platform_reward_amount /* 平台奖励金额 */,
- platform_refund_percentage /* 平台奖励返还百分比 */,
- profit_sharing_percentage /* 分账设置百分比 */,
- violation_count /* 违规次数 */,
- min_add_time_rate /* 最低加钟率 */,
- min_repurchase_rate /* 最低复购率 */,
- max_complaint_count /* 最大投诉次数 */,
- max_refund_rate /* 最大退单率 */,
- order_reject_count /* 拒绝接单次数 */,
- punctuality_rate /* 到达准时率 */,
- customer_wait_time /* 等待用户时长 */
- FROM technician_area_settings tas /* 技师区域设置表 */
- WHERE tas.is_deleted = 0;
|