| | |
| | | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using CoreCms.Net.Model.Entities; |
| | | using Newtonsoft.Json.Linq; |
| | | using SqlSugar; |
| | | |
| | | namespace CoreCms.Net.Model.ViewModels.DTO |
| | | { |
| | |
| | | /// 区域序列 |
| | | /// </summary> |
| | | public int areaId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 订单编号 |
| | | /// </summary> |
| | | public string orderId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 状态 |
| | | /// </summary> |
| | | public int status { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// 明细id |
| | | /// </summary> |
| | | public string itemIds { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 明细数量 |
| | | /// </summary> |
| | | public string itemNums { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 购物车序列 |
| | |
| | | /// </summary> |
| | | public decimal refund { get; set; } = 0; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 计划订单 |
| | | /// </summary> |
| | | public class JiHuaOrder |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// 学校 |
| | | /// </summary> |
| | | |
| | | |
| | | |
| | | public System.String shipAddress { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 联系人 |
| | | /// </summary> |
| | | |
| | | |
| | | public System.String shipName { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 联系电话 |
| | | /// </summary> |
| | | |
| | | |
| | | |
| | | public System.String shipMobile { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /// <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; } |
| | | |
| | | |
| | | |
| | | } |
| | | } |