This commit is contained in:
CortexCore
2024-05-04 17:05:47 +08:00
parent 7c33d8f8ba
commit ee95d24b2b
23 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
using System.ComponentModel;
using IDIS.Model;
using Newtonsoft.Json;
namespace IDIS.YL106.Model;
public record Data_Oder : IDIS_Model
{
public override string[] Tags { get; set; } = new string[] { "order" };
/// <summary>
/// 订单编号
/// </summary>
[DisplayName("订单编号")]
[JsonProperty("order_number")]
public string OderNumber { get; set; } = string.Empty;
/// <summary>
/// 产品编码
/// </summary>
[DisplayName("产品编码")]
[JsonProperty("product_code")]
public string ProductCode { get; set; } = string.Empty;
/// <summary>
/// 产品名称
/// </summary>
[DisplayName("产品名称")]
[JsonProperty("product_name")]
public string ProductName { get; set; } = string.Empty;
/// <summary>
/// 订单状态
/// </summary>
[DisplayName("订单状态")]
public string OrderState { get; set; } = string.Empty;
/// <summary>
/// 下单时间
/// </summary>
[DisplayName("下单时间")]
public DateTime CreateTime { get; set; } = DateTime.MinValue;
/// <summary>
/// 更新时间
/// </summary>
[DisplayName("更新时间")]
public DateTime UpdateTime { get; set; } = DateTime.MinValue;
/// <summary>
/// 完成时间
/// </summary>
[DisplayName("完成时间")]
public DateTime FinishTime { get; set; } = DateTime.MinValue;
}