CustomerListVO.java 719 B

123456789101112131415161718192021222324252627282930
  1. package jnpf.model.customer;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * 客户信息
  7. * @版本: V3.1.0
  8. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * @作者: JNPF开发平台组
  10. * @日期: 2021-07-10 14:09:05
  11. */
  12. @Data
  13. public class CustomerListVO{
  14. @Schema(description ="主键")
  15. private String id;
  16. @Schema(description ="编码")
  17. private String code;
  18. @Schema(description ="客户名称")
  19. private String customerName;
  20. @Schema(description ="地址")
  21. private String address;
  22. @Schema(description ="名称")
  23. private String name;
  24. @Schema(description ="联系方式")
  25. private String contactTel;
  26. }