初始化项目
This commit is contained in:
44
AUTS.Domain.ViewModels/Capacity/ResponseEveryDaySearch.cs
Normal file
44
AUTS.Domain.ViewModels/Capacity/ResponseEveryDaySearch.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AUTS.Domain.ViewModels
|
||||
{
|
||||
public class ResponseEveryDaySearch
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 机型
|
||||
/// </summary>
|
||||
public string ProjectName { get; set; }
|
||||
|
||||
public string OrderNo { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 订单数量
|
||||
/// </summary>
|
||||
public int OrderCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单交期
|
||||
/// </summary>
|
||||
public string DeliveryTime { get; set; }
|
||||
|
||||
public List<Dictionary<string, object>> Rows { get; set; }
|
||||
}
|
||||
|
||||
public class ResponseEveryDate
|
||||
{
|
||||
public int TotalCount { get; set; }
|
||||
public List<DataQuerySearch> DataList { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user