From 60cfd15db42bb816846072d027121d91ffd013b1 Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期四, 25 四月 2024 14:39:35 +0800 Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/baifenbaishop --- CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs | 122 ++++++++++++++++++++++++++++++++++++++-- 1 files changed, 116 insertions(+), 6 deletions(-) diff --git a/CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs b/CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs index 09b3806..d44c1bb 100644 --- a/CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs +++ b/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; } + + + + } } \ No newline at end of file -- Gitblit v1.9.1