zhangqian
2023-08-07 6f52e069fe72b4e37b0712a7e097e3af97bbc25e
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 //已收款
)