Browse Source

新增表单模板关联表单类型ID

hubin 1 year ago
parent
commit
7f3f401ac9

+ 5 - 0
src/main/java/com/aizuda/boot/modules/flw/entity/FlwFormTemplate.java

@@ -27,6 +27,11 @@ public class FlwFormTemplate extends BaseEntity {
 	@Size(max = 64)
 	private String tenantId;
 
+	@Schema(description = "表单分类ID")
+	@NotNull(groups = Create.class)
+	@PositiveOrZero
+	private Long formCategoryId;
+
 	@Schema(description = "名称")
 	@NotBlank(groups = Create.class)
 	@Size(max = 100)