VxOrderInfo.cs 435 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace OrderSystem.Entity
  5. {
  6. public partial class VxOrderInfo
  7. {
  8. public string 客户名称 { get; set; }
  9. public string 客户号码 { get; set; }
  10. public string 订单号 { get; set; }
  11. public string 合同号 { get; set; }
  12. public string 产品 { get; set; }
  13. public string 订单状态 { get; set; }
  14. }
  15. }