using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Weixin.JDCirclePromotion.Entitys { public class goodInfo_temp { /// /// 返回码 /// public int code { get; set; } /// /// 数据明细 /// //public List data { get; set; } public ArrayList data { get; set; } /// /// 返回消息 /// public string message { get; set; } /// /// /// public string requestId { get; set; } /// /// 有效商品总数量,上限10w /// public long totalCount { get; set; } } }