TemplateCondition.go 456 B

123456789101112131415
  1. package common
  2. type TemplateCondition struct {
  3. // 【公司Id】公司Id
  4. TenantId *int64 `json:"tenantId"`
  5. // 【组织id】组织id
  6. OrgId *int64 `json:"orgId,omitempty"`
  7. // 【公司名称】公司名称
  8. TenantName string `json:"tenantName,omitempty"`
  9. // 【模版名称】模版名称
  10. Keyword string `json:"keyword,omitempty"`
  11. // 【模版状态】模版状态 1:启用,0:停用,2:删除
  12. Status *int64 `json:"status,omitempty"`
  13. }