rpaas-core-service/pkg/models/branch.go

20 lines
562 B
Go
Raw Normal View History

2024-05-03 11:57:03 +00:00
package models
2024-05-03 12:41:51 +00:00
import (
"time"
)
2024-05-03 11:57:03 +00:00
type BranchRegisterBody struct {
BranchName string `json:"branch_name" validate:"required"`
CompanyID string `json:"company_id" bson:"company_id"`
}
2024-05-03 12:41:51 +00:00
type BranchInfo struct {
BranchName string `json:"branch_name" bson:"branch_name"`
BranchID string `json:"branch_id" bson:"branch_id"`
CompanyID string `json:"company_id" bson:"company_id"`
Owner []string `json:"owner" bson:"owner"`
CreateAt time.Time `json:"create_at" bson:"create_at"`
UpdateAt time.Time `json:"update_at" bson:"update_at"`
}