OrderStickBillDto.cs 899 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using Abp.AutoMapper;
  4. using Abp.Application.Services.Dto;
  5. using ShwasherSys.Invoice;
  6. namespace ShwasherSys.Invoice.Dto
  7. {
  8. [AutoMapTo(typeof(OrderStickBill)),AutoMapFrom(typeof(OrderStickBill))]
  9. public class OrderStickBillDto: EntityDto<string>
  10. {
  11. public string CustomerId { get; set; }
  12. public string CustomerName { get; set; }
  13. public DateTime? CreatDate { get; set; }
  14. public string StickNum { get; set; }
  15. public string StickMan { get; set; }
  16. public string Description { get; set; }
  17. public DateTime? TimeCreated { get; set; }
  18. public DateTime? TimeLastMod { get; set; }
  19. public string UserIDLastMod { get; set; }
  20. public string OriginalStickNum { get; set; }
  21. public string ReturnOrderNo { get; set; }
  22. public string OrderNo { get; set; }
  23. public int InvoiceType { get; set; }
  24. }
  25. }