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