zhangqian
2023-08-02 b6b7eb71bf61f90874e5699ec849362fb725cb99
constvar/const.go
@@ -67,3 +67,27 @@
   VettingTypeSalesChance
   VettingTypeSalesChanceFollow
)
type ServiceContractQueryClass string
const (
   ServiceContractQueryClassExpireAfter30Day   ServiceContractQueryClass = "30天后过期"
   ServiceContractQueryClassExpireAfter60Day   ServiceContractQueryClass = "60天后过期"
   ServiceContractQueryClassExpiredBefore15Day ServiceContractQueryClass = "已过期15天"
   ServiceContractQueryClassExpiredBefore60Day ServiceContractQueryClass = "已过期60天"
)
type ServiceContractKeywordType string
const (
   ServiceContractKeywordContractNo        ServiceContractKeywordType = "服务合同编号"
   ServiceContractKeywordCustomerName      ServiceContractKeywordType = "客户名称"
   ServiceContractKeywordContractDate      ServiceContractKeywordType = "签约日期"
   ServiceContractKeywordContractType      ServiceContractKeywordType = "合同类型"
   ServiceContractKeywordContractStatus    ServiceContractKeywordType = "合同状态"
   ServiceContractKeywordPrincipal         ServiceContractKeywordType = "负责人"
   ServiceContractKeywordProductName       ServiceContractKeywordType = "产品名称"
   ServiceContractKeywordServiceBeginDate  ServiceContractKeywordType = "服务开始日"
   ServiceContractKeywordServiceEndDate    ServiceContractKeywordType = "服务到期日"
   ServiceContractKeywordServiceTotalPrice ServiceContractKeywordType = "价税合计"
)