From 69a1b7107ca42ef46a42e98f7aadd3ea70fb35ed Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期四, 20 十一月 2025 09:19:32 +0800
Subject: [PATCH] 不用再增加一个专门的序号,就按照这个编号,不是列表都有个编号嘛,好,那个送货单就显示就显示那个编号,比如说雷波中学,你在左送货单的左上角2是1或者。或者有三果十一都可以。
---
CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs b/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
index 9cabd81..6ae4683 100644
--- a/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs
@@ -1,6 +1,7 @@
锘縰sing System;
using CY.Infrastructure.Domain;
using CY.Infrastructure.Common;
+using System.Collections.Generic;
namespace CY.Model
{
@@ -244,6 +245,13 @@
/// </summary>
public string biaoge { get; set; }
+ /// <summary>
+ /// 缂栧彿
+ /// </summary>
+
+
+ public int? Bianhao { get; set; }
+
#endregion Model
#region Visiter
@@ -394,6 +402,12 @@
this.FirmId = isChange ? MyConvert.ConvertToGuid(value) : FirmId;
theValue = this.FirmId;
}
+ else if ("Bianhao".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22)
+ {
+ this.Bianhao = isChange ? MyConvert.ConvertToInt32(value) : Bianhao;
+ theValue = this.Bianhao;
+ }
+
return theValue;
}
@@ -509,6 +523,41 @@
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; }
}
}
--
Gitblit v1.9.1