移动系统liao
2024-04-26 9496fec9e6054f6af6b5ddcc81a808f77f041d1d
CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs
@@ -1,18 +1,20 @@
/***********************************************************************
 *            Project: CoreCms
 *        ProjectName: 核心内容管理系统
 *                Web: https://www.corecms.net
 *             Author: 大灰灰
 *              Email: jianweie@163.com
 *         CreateTime: 2021/1/31 21:45:10
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统
 *                Web: http://chuanyin.com
 *             Author:
 *              Email:
 *         CreateTime: 202403/02
 *        Description: 暂无
 ***********************************************************************/
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
{
@@ -52,6 +54,26 @@
        ///     区域序列
        /// </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>
        ///     购物车序列
@@ -458,4 +480,92 @@
        /// </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; }
    }
}