소스 검색

自定义表单新增系统表单配置

hubin 1 년 전
부모
커밋
29f89ee193
1개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. 10 2
      src/main/java/com/aizuda/boot/modules/flw/entity/FlwFormTemplate.java

+ 10 - 2
src/main/java/com/aizuda/boot/modules/flw/entity/FlwFormTemplate.java

@@ -45,12 +45,20 @@ public class FlwFormTemplate extends BaseEntity {
 	@Size(max = 100)
 	private String code;
 
-	@Schema(description = "类型 0,PC 1,APP")
+	@Schema(description = "类型 0,设计表单 1,系统表单")
 	@PositiveOrZero
 	private Integer type;
 
+	@Schema(description = "PC端地址")
+	@Size(max = 255)
+	private String pcUrl;
+
+	@Schema(description = "APP端地址")
+	@Size(max = 255)
+	private String appUrl;
+
 	@Schema(description = "内容")
-	@Size(max = 2147483647)
+	@Size(max = 10000)
 	private String content;
 
 	@Schema(description = "状态 0、禁用 1、正常")