getByName(name)
forumVoteFinder.getByName(name)
描述
根据 metadata.name
获取投票。
参数
name:string
- 投票的唯一标识metadata.name
。
返回值
示例
类型定义
VoteVo
{
"metadata": {
"name": "string", // 唯一标识
"labels": {
"additionalProp1": "string"
},
"annotations": {
"additionalProp1": "string"
},
"creationTimestamp": "2022-11-20T13:06:38.512Z", // 创建时间
},
"spec": {
"voteOption": true, // 是否投票
"title": "string", // 标题
"options": "List<string>", // 投票选项
"timeLimit": 7, // 投票时间
"startDate": "2022-11-20T13:06:38.512Z", // 投票有效期 0:永久, 1:1天, 7:7天, 30:30天
"endDate": "2022-11-20T13:06:38.512Z", // 投票结束时间
"objId": "string", // 帖子唯一标识 即 ForumPostVo 的 metadata.name
"owner": "#ContributorVo", // 创建者
"voteData": "List<Integer>", // 投票数据
},
"status": {
"voteTotal": 0, // 投票总数
"voteUser": 0, // 投票用户数
},
}