fix
wangpengfei
2023-08-09 1041c15ba9f55e1be4078fc24cef9acfbc0a4326
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package constvar
 
type ServiceCollectionPlanQueryClass string
 
const (
    ServiceCollectionPlanQueryClassExpireLessThen60Days ServiceCollectionPlanQueryClass = ""
)
 
type ServiceCollectionPlanKeywordType string
 
const (
    ServiceCollectionPlanKeywordCustomerName ServiceCollectionPlanKeywordType = ""
)
 
type CollectionStatus int
 
const (
    CollectionStatusUnCollected CollectionStatus = 1 //待收款
    CollectionStatusCollected   CollectionStatus = 2 //已收款
)