Upstream sync
This commit is contained in:
21
domain/entity/plan.go
Normal file
21
domain/entity/plan.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package entity
|
||||
|
||||
import "time"
|
||||
|
||||
type Plan struct {
|
||||
ID int64 `json:"-"`
|
||||
UUID string `json:"id"`
|
||||
Name string `json:"name"`
|
||||
InternalID string `json:"key"`
|
||||
Status bool `json:"desc"`
|
||||
PlanEntityID int64 `json:"plan_entity_id"`
|
||||
EntityID int64 `json:"entity_id"`
|
||||
PayerID int64 `json:"payer_id"`
|
||||
PayerName string `json:"payer_name"`
|
||||
PrefixID int64 `json:"prefix_id"`
|
||||
PrefixUUID string `json:"prefix_uuid"`
|
||||
AlphaPrefix string `json:"alpha_prefix"`
|
||||
Created time.Time `json:"created"`
|
||||
Updated time.Time `json:"updated"`
|
||||
Active bool `json:"active"`
|
||||
}
|
||||
Reference in New Issue
Block a user