25 lines
715 B
Go
25 lines
715 B
Go
package constants
|
|
|
|
const (
|
|
IsSHOW = 1
|
|
NotShow = 2
|
|
)
|
|
|
|
const (
|
|
Enable = 1
|
|
Disable = 2
|
|
)
|
|
|
|
// IrregularTaskToolIndexMap 不规则任务工具索引映射
|
|
var IrregularTaskToolIndexMap = map[string]string{
|
|
"zltxProduct": "product_diagnosis",
|
|
"zltxOrderDetail": "order_diagnosis",
|
|
"knowledgeBase": "knowledge_qa",
|
|
"zltxOrderStatistics": "account_statistics",
|
|
"normalChat": "chat",
|
|
"zltxOrderAfterSaleSupplier": "after_sale_supplier",
|
|
"zltxOrderAfterSaleReseller": "after_sale_reseller",
|
|
"zltxOrderAfterSaleResellerBatch": "after_sale_reseller_batch",
|
|
"zltxLossRiskSearch": "loss_order_direct",
|
|
}
|