DownloadCodeForm.java 775 B

123456789101112131415161718192021222324252627282930313233
  1. package jnpf.base.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. @Schema(description = "下载代码表单")
  6. public class DownloadCodeForm {
  7. @Schema(description = "所属模块")
  8. private String module;
  9. @Schema(description = "模块包名")
  10. private String modulePackageName;
  11. @Schema(description = "主功能备注")
  12. private String description;
  13. @Schema(description = "数据源id")
  14. private String dataSourceId;
  15. @Schema(description = "主表表名:用于文件夹创建")
  16. private String mainClassName;
  17. @Schema(description = "是否流程:0否,1-是")
  18. private Integer enableFlow;
  19. @Schema(description = "是否对比:-true,false")
  20. private boolean contrast = false;
  21. }