zhangqian
2023-08-11 ff3e203423f296965472d1f09347cda5cfe3a786
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 //已收款
)