using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WindowsFormsApp1.entity
|
{
|
class FirstOrderSubInfo
|
{
|
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;
|
|
|
//标题
|
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; }
|
}
|
|
|
|
|
|
|
}
|
}
|