VxClientinfo.cs 298 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace OrderSystem.Entity
  5. {
  6. public partial class VxClientinfo
  7. {
  8. public string 客户名称 { get; set; }
  9. public string 客户号码 { get; set; }
  10. public string 合同号 { get; set; }
  11. }
  12. }