using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// WeikeTaskView Data Structure. /// [Serializable] public class WeikeTaskView : AopObject { /// /// 任务视图描述 /// [JsonProperty("desc")] public string Desc { get; set; } /// /// 蚂蚁微客对当前任务视图编号 /// [JsonProperty("id")] public long Id { get; set; } /// /// 任务视图图片链接 /// [JsonProperty("img")] public string Img { get; set; } /// /// 任务视图名称 /// [JsonProperty("name")] public string Name { get; set; } /// /// 任务视图对应的任务薪资 /// [JsonProperty("salary")] public string Salary { get; set; } /// /// 当前任务视图剩余任务数 /// [JsonProperty("task_count")] public long TaskCount { get; set; } /// /// 点击任务视图后唤起微客对应页面的链接 /// [JsonProperty("url")] public string Url { get; set; } } }