您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
960B

  1. package main
  2. type crmdEntityBase struct {
  3. AssignedUserID string `json:"assignedUserId,omitempty"`
  4. AssignedUserName string `json:"assignedUsername,omitempty"`
  5. CreatedAt string `json:"createdAt,omitempty"`
  6. CreatedByID string `json:"createdById,omitempty"`
  7. CreatedByName string `json:"createdByName,omitempty"`
  8. Deleted bool `json:"deleted,omitempty"`
  9. Description string `json:"description"`
  10. ID string `json:"id,omitempty"`
  11. ModifiedAt string `json:"modifiedAt,omitempty"`
  12. ModifiedByID string `json:"modifiedById,omitempty"`
  13. ModifiedByName string `json:"modifiedByName,omitempty"`
  14. Name string `json:"name,omitEmpty"`
  15. TeamsIDs []string `json:"teamsIds,omitempty"`
  16. TeamsNames map[string]string `json:"teamsNames,omitEmpty"`
  17. }