31技师设置.sql 940 B

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