| | |
| | | using System; |
| | | using CY.Infrastructure.Domain; |
| | | using CY.Infrastructure.Common; |
| | | using System.Collections.Generic; |
| | | |
| | | namespace CY.Model |
| | | { |
| | |
| | | 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; } |
| | | } |
| | | } |