ContractInfoVO.java 556 B

123456789101112131415161718192021222324252627
  1. package jnpf.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. *
  7. * 版本: V3.0.0
  8. * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  9. * 作者: JNPF开发平台组
  10. * 日期: 2020-12-31
  11. */
  12. @Data
  13. public class ContractInfoVO {
  14. @Schema(description = "主键")
  15. private String id;
  16. @Schema(description = "姓名")
  17. private String contractName;
  18. @Schema(description = "手机号")
  19. private String mytelePhone;
  20. @Schema(description = "文件")
  21. private String fileJson;
  22. }