CVxIdClientPhoneMerge.cs 348 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace OrderSystem.Entity
  5. {
  6. public partial class CVxIdClientPhoneMerge
  7. {
  8. public string ClientName { get; set; }
  9. public string ClientPhoneNo { get; set; }
  10. public string VxId { get; set; }
  11. public string ContractNo { get; set; }
  12. }
  13. }