ApiOrderModel.cs 1.1 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. namespace JiaZhiQuan.Common.Models {
  3. /// <summary>
  4. /// 于初科技供应商订单对象
  5. /// </summary>
  6. public class ApiOrderModel {
  7. public class SupplierOrder {
  8. public long id { get; set; }
  9. public long orderId { get; set; }
  10. public int productId { get; set; }
  11. public string productName { get; set; }
  12. public int supplierId { get; set; }
  13. public int purchasePrice { get; set; }
  14. public DateTime purchaseTime { get; set; }
  15. public int orderMethod { get; set; }
  16. public string rechargeAccount { get; set; }
  17. public long userId { get; set; }
  18. public string supplierOrderId { get; set; }
  19. public int orderStatus { get; set; }
  20. public string reason { get; set; }
  21. public int taskStatus { get; set; }
  22. public int taskTimes { get; set; }
  23. public int operatorId { get; set; } = 0;
  24. public DateTime createAt { get; set; }
  25. public DateTime updateAt { get; set; }
  26. }
  27. }
  28. }