PrintDevFieldsQuery.java 637 B

123456789101112131415161718192021222324252627282930313233
  1. package jnpf.base.model.query;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import jakarta.validation.constraints.NotBlank;
  5. /**
  6. * 打印模板-数查询对象
  7. *
  8. * @author JNPF开发平台组 YY
  9. * @version V3.2.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2019年9月30日
  12. */
  13. @Data
  14. public class PrintDevFieldsQuery {
  15. /**
  16. * sql语句
  17. */
  18. @NotBlank(message = "必填")
  19. @Schema(description = "sql语句")
  20. private String sqlTemplate;
  21. /**
  22. * 连接id
  23. */
  24. @NotBlank(message = "必填")
  25. @Schema(description = "连接id")
  26. private String dbLinkId;
  27. }