IcsFromERPJob
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
929 B

3 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.FromERP.Model
  7. {
  8. public class CustomerDto
  9. {
  10. public string CusCode { get; set; }
  11. public string CusName { get; set; }
  12. /// <summary>
  13. /// 客户简称
  14. /// </summary>
  15. public string CusAbbName { get; set; }
  16. /// <summary>
  17. /// 地址
  18. /// </summary>
  19. public string CusAddress { get; set; }
  20. /// <summary>
  21. /// 联系人
  22. /// </summary>
  23. public string CusPerson { get; set; }
  24. public string CusPhone { get; set; }
  25. public string CusEmail { get; set; }
  26. public DateTime Mtime { get; set; }
  27. public string Free1 { get; set; }
  28. public string Free2 { get; set; }
  29. public string Free3 { get; set; }
  30. public string Free4 { get; set; }
  31. }
  32. }