Açıklama Yok

Order.cs 838B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CallCenterApi.Interface.Models.Dto
  6. {
  7. public class OrderDto
  8. {
  9. public int id { get; set; }
  10. public string orderno { get; set; }
  11. public int? userid { get; set; }
  12. public string username { get; set; }
  13. public string express { get; set; }
  14. public string expressno { get; set; }
  15. public string acceptname { get; set; }
  16. public string postcode { get; set; }
  17. public string telphone { get; set; }
  18. public string mobile { get; set; }
  19. public string address { get; set; }
  20. public string remark { get; set; }
  21. public decimal orderamount { get; set; }
  22. public string status { get; set; }
  23. public DateTime addtime { get; set; }
  24. }
  25. }