AppDataListVO.java 511 B

123456789101112131415161718192021222324
  1. package jnpf.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * app常用数据
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021-07-08
  11. */
  12. @Data
  13. @Schema(description = "常用模型")
  14. public class AppDataListVO {
  15. @Schema(description = "主键")
  16. private String id;
  17. @Schema(description = "应用主键")
  18. private String objectId;
  19. @Schema(description = "数据")
  20. private String objectData;
  21. }