| | |
| | | using System; |
| | | using CY.Infrastructure.Domain; |
| | | using CY.Infrastructure.Common; |
| | | using System.Collections.Generic; |
| | | |
| | | namespace CY.Model |
| | | { |
| | |
| | | /// </summary> |
| | | public string biaoge { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 编号 |
| | | /// </summary> |
| | | |
| | | |
| | | public int? Bianhao { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 编号 |
| | | /// </summary> |
| | | |
| | | |
| | | public int? DeliverState { get; set; } |
| | | |
| | | |
| | | |
| | | #endregion Model |
| | | |
| | | #region Visiter |
| | |
| | | this.FirmId = isChange ? MyConvert.ConvertToGuid(value) : FirmId; |
| | | theValue = this.FirmId; |
| | | } |
| | | else if ("Bianhao".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22) |
| | | { |
| | | this.Bianhao = isChange ? MyConvert.ConvertToInt32(value) : Bianhao; |
| | | theValue = this.Bianhao; |
| | | } |
| | | |
| | | else if ("DeliverState".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 23) |
| | | { |
| | | this.DeliverState = isChange ? MyConvert.ConvertToInt32(value) : DeliverState; |
| | | theValue = this.DeliverState; |
| | | } |
| | | |
| | | |
| | | return theValue; |
| | | } |
| | |
| | | public System.Int32 nums { get; set; } |
| | | |
| | | |
| | | public List<JiHuaOrderDetail> jiHuaOrderDetails { get; set; } |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 计划订单 |
| | | /// </summary> |
| | | public class JiHuaOrderDetail |
| | | { |
| | | |
| | | /// <summary> |
| | | /// 商品名称 |
| | | /// </summary> |
| | | |
| | | public System.String name { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 商品规格 |
| | | /// </summary> |
| | | |
| | | public System.String specification { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 货品价格单价 |
| | | /// </summary> |
| | | |
| | | public System.Decimal price { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 数量 |
| | | /// </summary> |
| | | |
| | | public System.Int32 nums { get; set; } |
| | | } |
| | | } |