using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WindowsFormsApp1.entity
|
{
|
class FirstOrderSubInfo
|
{
|
private int index;
|
private String title;
|
private String zkPrice;
|
private String couponPrice;
|
private String lijinAmount;
|
private String goodsId;
|
private String actualPrice;
|
private String commission;
|
private String commissionRate;
|
private List<String> imgList;
|
private Boolean mark;
|
private String salesNum;//销量
|
private String couponAmount;//券面额
|
private int tmall;//天猫
|
private String itemUrl;//链接
|
private String tkl;//淘口令
|
|
public String SalesNum
|
{
|
get { return salesNum; }
|
set { salesNum = value; }
|
}
|
|
public String Tkl
|
{
|
get { return tkl; }
|
set { tkl = value; }
|
}
|
|
public String ItemUrl
|
{
|
get { return itemUrl; }
|
set { itemUrl = value; }
|
}
|
|
public String CouponAmount
|
{
|
get { return couponAmount; }
|
set { couponAmount = value; }
|
}
|
|
public int Tmall
|
{
|
get { return tmall; }
|
set { tmall = value; }
|
}
|
|
|
public int Index {
|
get { return index; }
|
set { index = value; }
|
}
|
|
//标题
|
public String Title
|
{
|
get { return title; }
|
set { title = value; }
|
}
|
|
public String ZkPrice
|
{
|
get { return zkPrice; }
|
set { zkPrice = value; }
|
}
|
|
public String CouponPrice
|
{
|
get { return couponPrice; }
|
set { couponPrice = value; }
|
}
|
|
public String LijinAmount
|
{
|
get { return lijinAmount; }
|
set { lijinAmount = value; }
|
}
|
|
public String GoodsId
|
{
|
get { return goodsId; }
|
set { goodsId = value; }
|
}
|
|
public String ActualPrice
|
{
|
get { return actualPrice; }
|
set { actualPrice = value; }
|
}
|
|
|
public String Commission
|
{
|
get { return commission; }
|
set { commission = value; }
|
}
|
|
public String CommissionRate
|
{
|
get { return commissionRate; }
|
set { commissionRate = value; }
|
}
|
|
public List<String> ImgList
|
{
|
get { return imgList; }
|
set { imgList = value; }
|
}
|
|
|
public Boolean Mark
|
{
|
get { return mark; }
|
set { mark = value; }
|
}
|
|
|
|
|
|
|
}
|
}
|