wangpengfei
2023-08-17 06c0b03df2955475fe39ff2a793a5f151f4da99f
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 = "故障类别"
)