old_flsystem/应用/ProductClient/Entitys/goodInfo_temp.cs

35 lines
850 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}