TemplateViews.go 358 B

1234567891011
  1. package common
  2. type TemplateViews struct {
  3. // 【主体ID】主体ID
  4. SubjectId string `json:"subjectId,omitempty"`
  5. // 【主体名称】主体名称
  6. SubjectName string `json:"subjectName,omitempty"`
  7. // 【主体类型】主体类型 【回参说明】 USER-用户,ROLE-角色,DEPARTMENT-部门
  8. SubjectType string `json:"subjectType,omitempty"`
  9. }