package common type TemplateCondition struct { // 【公司Id】公司Id TenantId *int64 `json:"tenantId"` // 【组织id】组织id OrgId *int64 `json:"orgId,omitempty"` // 【公司名称】公司名称 TenantName string `json:"tenantName,omitempty"` // 【模版名称】模版名称 Keyword string `json:"keyword,omitempty"` // 【模版状态】模版状态 1:启用,0:停用,2:删除 Status *int64 `json:"status,omitempty"` }