using System; using System.Collections.Generic; #nullable disable namespace OrderSystem.Entity { public partial class VxOrderInfo { public string 客户名称 { get; set; } public string 客户号码 { get; set; } public string 订单号 { get; set; } public string 合同号 { get; set; } public string 产品 { get; set; } public string 订单状态 { get; set; } } }