package constvar
|
|
type ServiceCollectionPlanQueryClass string
|
|
const (
|
ServiceCollectionPlanQueryClassExpireLessThen60Days ServiceCollectionPlanQueryClass = ""
|
)
|
|
type ServiceCollectionPlanKeywordType string
|
|
const (
|
ServiceCollectionPlanKeywordCustomerName ServiceCollectionPlanKeywordType = ""
|
)
|
|
type CollectionStatus int
|
|
const (
|
CollectionStatusUnCollected CollectionStatus = 1 //待收款
|
CollectionStatusCollected CollectionStatus = 2 //已收款
|
)
|