wangpengfei
2023-08-16 1b8811fe5024ad4e2d744a98dc9a49d65bb87a3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package constvar
 
type ServiceOrderQueryClass string
 
const (
    ServiceOrderQueryClassExpireLessThen60Days ServiceOrderQueryClass = ""
)
 
type ServiceOrderKeywordType string
 
const (
    ServiceOrderKeywordOrderNumber     ServiceOrderKeywordType = "服务单编号"
    ServiceOrderKeywordSubject         ServiceOrderKeywordType = "主题"
    ServiceOrderKeywordClientName      ServiceOrderKeywordType = "客户名称"
    ServiceOrderKeywordRealProcessTime ServiceOrderKeywordType = "实际处理时间"
    ServiceOrderKeywordServiceMan      ServiceOrderKeywordType = "服务人员"
    ServiceOrderKeywordServiceType     ServiceOrderKeywordType = "服务方式"
    ServiceOrderKeywordProductType     ServiceOrderKeywordType = "产品类别"
    ServiceOrderKeywordFaultType       ServiceOrderKeywordType = "故障类别"
)