mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 06:58:54 +08:00
10 lines
261 B
Go
10 lines
261 B
Go
package model
|
|
|
|
import "SamWaf/model/baseorm"
|
|
|
|
type PrivateGroup struct {
|
|
baseorm.BaseOrm
|
|
PrivateGroupName string `json:"private_group_name"` //分组名称
|
|
PrivateGroupBelongCloud string `json:"private_group_belong_cloud"` //分组归属云
|
|
}
|