接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,60 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// GroupInfo Data Structure.
/// </summary>
[Serializable]
public class GroupInfo : AopObject
{
/// <summary>
/// 创建者用户id
/// </summary>
[JsonProperty("creator_uid")]
public string CreatorUid { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[JsonProperty("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 群ID
/// </summary>
[JsonProperty("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 群头像url
/// </summary>
[JsonProperty("group_img")]
public string GroupImg { get; set; }
/// <summary>
/// 群名称
/// </summary>
[JsonProperty("group_name")]
public string GroupName { get; set; }
/// <summary>
/// 群成员上限
/// </summary>
[JsonProperty("group_threshold")]
public long GroupThreshold { get; set; }
/// <summary>
/// 群类型,0:普通群、1经费群、5活动群、6娱乐群
/// </summary>
[JsonProperty("group_type")]
public string GroupType { get; set; }
/// <summary>
/// 群主用户id
/// </summary>
[JsonProperty("master_uid")]
public string MasterUid { get; set; }
}
}