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