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" }; /// /// 订单编号 /// [DisplayName("订单编号")] [JsonProperty("order_number")] public string OderNumber { get; set; } = string.Empty; /// /// 产品编码 /// [DisplayName("产品编码")] [JsonProperty("product_code")] public string ProductCode { get; set; } = string.Empty; /// /// 产品名称 /// [DisplayName("产品名称")] [JsonProperty("product_name")] public string ProductName { get; set; } = string.Empty; /// /// 订单状态 /// [DisplayName("订单状态")] public string OrderState { get; set; } = string.Empty; /// /// 下单时间 /// [DisplayName("下单时间")] public DateTime CreateTime { get; set; } = DateTime.MinValue; /// /// 更新时间 /// [DisplayName("更新时间")] public DateTime UpdateTime { get; set; } = DateTime.MinValue; /// /// 完成时间 /// [DisplayName("完成时间")] public DateTime FinishTime { get; set; } = DateTime.MinValue; }