ContractModel.cs 435 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OrderSystem.Entity.ViewModel
  5. {
  6. public class ContractModel
  7. {
  8. public string ContractNo { get; set; }
  9. public int? Count { get; set; }
  10. public string Mobile { get; set; }
  11. public string CustomerName { get; set; }
  12. public string Status { get; set; }
  13. public List<OrderModel> OrderList { get; set; }
  14. }
  15. }