Files
Web_AUTSDATA_Mvc_Prod/AUTS.Domain.ViewModels/Order/VM_OrderInfoOnMO.cs

32 lines
664 B
C#
Raw Normal View History

2025-11-20 13:11:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.Domain.ViewModels
{
public class VM_OrderInfoOnMO
{
/// <summary>
/// 交期时间
/// </summary>
public string DeliveryTime { get; set; }
/// <summary>
/// 客户
/// </summary>
public string CustomerAbbr { get; set; }
/// <summary>
/// 订单数量
/// </summary>
public int OrderCount { get; set; }
/// <summary>
/// 机型
/// </summary>
public string ProjectName { get; set; }
}
}