From 8d51a0762a43eedada5eb15bd24180d7204e63b3 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期五, 17 一月 2025 08:58:19 +0800 Subject: [PATCH] 报销流程 --- CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs b/CY_ECommercePlatform/CY.Model/OA/CoreCmsPlanOrder.cs index 9cabd81..83af9f4 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 { @@ -509,6 +510,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