From 5d6cb15ac86d9174393cb9d1538d69b567e2c26c Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期四, 09 五月 2024 08:56:50 +0800 Subject: [PATCH] 修改货品编辑bug --- CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs | 154 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 148 insertions(+), 6 deletions(-) diff --git a/CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs b/CoreCms.Net.Model/ViewModels/DTO/OrderDTO.cs index 09b3806..022be77 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> /// 璐墿杞﹀簭鍒� @@ -152,6 +174,15 @@ /// 璺熻釜ID锛屾湁鏁堟湡鍗佸垎閽燂紝浼氬奖鍝嶄富鎾綊鍥犮�佸垎浜憳褰掑洜绛夛紝闇�鍒涘缓璁㈠崟鍓嶈皟鐢紝璋冪敤鐢熸垚璁㈠崟 api 鏃堕渶浼犲叆璇ュ弬鏁� /// </summary> public string traceId { get; set; } + /// <summary> + /// 鏄庣粏ids + /// </summary> + public int[] itemIdarray { get; set; } + + /// <summary> + /// 鏄庣粏鏁伴噺 + /// </summary> + public int[] itemNumarray { get; set; } } @@ -458,4 +489,115 @@ /// </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 shouhuoAddress { get; set; } + + + + + + + + + + + + + + + + + /// <summary> + /// quxian + /// </summary> + + public System.String shi { get; set; } + + + /// <summary> + /// quxian + /// </summary> + + public System.String quxian { get; set; } + + + /// <summary> + /// 鐗囧尯 + /// </summary> + + public System.String pianqu { 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