From 5dde755029a86cf8e7052f4878e7c64b94715c38 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 13 六月 2020 18:25:05 +0800 Subject: [PATCH] '首页完善' --- WindowsFormsApp1/entity/FirstOrderSubInfo.cs | 32 ++++++++++++++++++++++---------- 1 files changed, 22 insertions(+), 10 deletions(-) diff --git a/WindowsFormsApp1/entity/FirstOrderSubInfo.cs b/WindowsFormsApp1/entity/FirstOrderSubInfo.cs index aa504d1..c7ff625 100644 --- a/WindowsFormsApp1/entity/FirstOrderSubInfo.cs +++ b/WindowsFormsApp1/entity/FirstOrderSubInfo.cs @@ -8,64 +8,76 @@ { 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 + public String Title { get { return title; } set { title = value; } } - public String zkPrice + public String ZkPrice { get { return zkPrice; } set { zkPrice = value; } } - public String couponPrice + public String CouponPrice { get { return couponPrice; } set { couponPrice = value; } } - public String lijinAmount + public String LijinAmount { get { return lijinAmount; } set { lijinAmount = value; } } - public String goodsId + public String GoodsId { get { return goodsId; } set { goodsId = value; } } - public String actualPrice + public String ActualPrice { get { return actualPrice; } set { actualPrice = value; } } - public String commission + public String Commission { get { return commission; } set { commission = value; } } - public String commissionRate + public String CommissionRate { get { return commissionRate; } set { commissionRate = value; } } - public List<String> imgList + public List<String> ImgList { get { return imgList; } set { imgList = value; } } - public Boolean mark + public Boolean Mark { get { return mark; } set { mark = value; } -- Gitblit v1.8.0