using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.EntityTmp.WeiPinHui
{
///
/// 查询推广位
///
public class QueryPids
{
///
/// 返回代码
///
public string returnCode { get; set; }
///
/// 返回数据
///
public QueryPid result { get; set; }
}
public class QueryPid
{
public List pidInfoList { get; set; }
public int total { get; set; }
}
public class PidInfo
{
public string pid { get; set; }
public string pidName { get; set; }
public long createTime { get; set; }
public string ucode { get; set; }
public string b2cUserId { get; set; }
public int status { get; set; }
public bool hasValidOrder { get; set; }
}
}