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 = "故障类别"
|
)
|