35 lines
850 B
C#
35 lines
850 B
C#
|
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ProductClient.Entitys
|
|||
|
{
|
|||
|
public class goodInfo_temp
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 返回码
|
|||
|
/// </summary>
|
|||
|
public int code { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 数据明细
|
|||
|
/// </summary>
|
|||
|
//public List<GoodsResp> data { get; set; }
|
|||
|
public ArrayList data { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 返回消息
|
|||
|
/// </summary>
|
|||
|
public string message { get; set; }
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public string requestId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 有效商品总数量,上限10w
|
|||
|
/// </summary>
|
|||
|
public long totalCount { get; set; }
|
|||
|
}
|
|||
|
}
|